Dusty settling SPH test#

Perform a dust settling test in a local stratified box.

If you want to change the resolution, you can set the LZ environment variable.

Example (from build directory): `bash LZ=96 ./shamrock --sycl-cfg 0:0 --smi --loglevel 1 --rscript ../examples/sph/run_dustysettle_tva.py `

14

Imports#

21 import json
22 import os
23
24 import matplotlib as mpl
25 import matplotlib.colors as mcolors
26 import matplotlib.pyplot as plt
27 import numpy as np
28 from matplotlib import cm
29 from matplotlib.animation import PillowWriter
30 from matplotlib.lines import Line2D
31 from scipy.linalg import solve_banded
32 from scipy.special import erfinv
33 from shamrock.utils.DustMRNDistribution import DustMRNDistribution
34 from shamrock.utils.numba_helper import maybe_njit
35 from shamrock.utils.plot import show_image_sequence
36
37 import shamrock

Shamrock initialization#

43 shamrock.enable_experimental_features()
44
45 # If we use the shamrock executable to run this script instead of the python interpreter,
46 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
47 if not shamrock.sys.is_initialized():
48     shamrock.change_loglevel(1)
49     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Use shamrock documentation style for matplotlib#

55 shamrock.matplotlib.set_shamrock_mpl_style()

Define simulation parameters and unit system#

 61 si = shamrock.UnitSystem()
 62 sicte = shamrock.Constants(si)
 63 codeu = shamrock.UnitSystem(
 64     unit_time=3600 * 24 * 365,
 65     unit_length=sicte.au(),
 66     unit_mass=sicte.sol_mass(),
 67 )
 68 ucte = shamrock.Constants(codeu)
 69
 70 # Disc / box
 71 rho_i = 1e-6  # Initial density
 72 central_mass = 1  # Central mass
 73 R0 = 1  # Where are we in radius
 74 H_r_0 = 0.05  # Disc aspect ratio
 75 gamma = 1.4  # Adiabatic index
 76 box_H_count = 8  # box size in number of H
 77 random_vel_pert = True  # add a small vecolity pertubation to fasten the setup
 78
 79 # Dust
 80 ndust = 5
 81 mrn_pow = 3.5
 82 mrn_cutoff_si = np.inf  # would be 250e-9 normally
 83 epsilon_base = 0.01
 84 rho_grains_si_edges = np.array([2.3 * 1000 for i in range(ndust + 1)])
 85 grain_size_si_edges = np.logspace(-5, -3, ndust + 1)
 86
 87 # Resolution (lattice size)
 88 lx = 12
 89 ly = 12
 90 lz = int(os.environ.get("LZ", "64"))
 91
 92 # Time
 93 tlist = [0.1 * i for i in range(1000)]
 94 iinject = 20
 95 tinject = tlist[iinject]
 96 t_end = tinject + 3.0
 97
 98 # Scheduler
 99 scheduler_split_val = int(2e7)
100 scheduler_merge_val = 1
101
102 # Artificial viscosity
103 av_alpha_min = 0.0
104 av_alpha_max = 1
105 av_sigma_decay = 0.1
106 av_alpha_u = 1
107 av_beta_AV = 2
108 vel_dissipation_eta = 5
109
110 # CFL (before dust injection)
111 cfl_cour_setup = 0.25
112 cfl_force_setup = 0.25
113 # CFL (after dust injection)
114 cfl_cour_inject = 0.1
115 cfl_force_inject = 0.1
116
117 # Injection check
118 max_v_inject_threshold = 1.0
119
120 # Analytical reference
121 reference_tau = 0.025
122 reference_Nz = 4000
123 reference_zrange = 3.5  # in units of H
124
125 # Paths
126 sim_folder = f"_to_trash/dusty_settle_{lz}/"
127 dump_folder = sim_folder + "dump/"
128
129 # Plotting
130 cmap = "plasma"
131 dpi = 250

Derived physical scales and lattice geometry#

137 print("codeu.get('m') / codeu.get('s') =", codeu.get("m") / codeu.get("s"))
138 print("codeu.to('m') / codeu.to('s') =", codeu.to("m") / codeu.to("s"))
139
140 G = ucte.G()
141
142
143 def kep_profile(r):
144     return (G * central_mass / r) ** 0.5
145
146
147 def omega_k(r):
148     return kep_profile(r) / r
149
150
151 H = H_r_0 * R0
152 cs = H * omega_k(R0)
153 box = box_H_count * H
154
155 print(f"cs = {cs}")
156 print(f"H = {H}")
157
158 mrn_distribution = DustMRNDistribution(
159     codeu, mrn_pow, mrn_cutoff_si, grain_size_si_edges, rho_grains_si_edges
160 )
161
162 lmin = (-(lx // 2), -(ly // 2), -(lz // 2))
163 lmax = (lx // 2, ly // 2, lz // 2)
164
165 # Call with dr = 1 as we will rescale on next call
166 (xm, ym, zm), (xM, yM, zM) = shamrock.math.get_periodic_hcp_box(1.0, lmin, lmax)
167 print(f"base lattice : xM = {xM}, yM = {yM}, zM = {zM}")
168 dr = 2 * box / (zM - zm)
169 print(f"dr = {dr}")
170 bmin, bmax = shamrock.math.get_periodic_hcp_box(dr, lmin, lmax)
171 print(f"new lattice : bmin = {bmin}, bmax = {bmax}")
172 xm, ym, zm = bmin
173 xM, yM, zM = bmax
174
175 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
176 totmass = rho_i * vol_b
177 print("Total mass :", totmass)
178
179 pmass = -1
codeu.get('m') / codeu.get('s') = 0.00021080513948785768
codeu.to('m') / codeu.to('s') = 4743.717361111111
cs = 0.31394308776061347
H = 0.05
 ---- MRN DISTRIBUTION ----
bin edges:
  grains sizes (edges) = [1e-05, 2.5118864315095822e-05, 6.309573444801929e-05, 0.00015848931924611142, 0.00039810717055349735, 0.001] [m]
  grains dens (edges) = [2300.0, 2300.0, 2300.0, 2300.0, 2300.0, 2300.0] [kg.m^-3]
  grains sizes (edges) = [6.684587122268445e-17, 1.6790923692669792e-16, 4.217689339612993e-16, 1.0594356624496489e-15, 2.661182065564636e-15, 6.684587122268445e-15] [code u]
  grains dens (edges) = [3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797, 3872442.9558226797] [code u]

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

deduced:
  alpha = 3 - mrn_pow = -0.5
  s (edges) max = 0.001 min = 1e-05 [m]
  grains sizes (edges) (clipped) = [1e-05, 2.5118864315095822e-05, 6.309573444801929e-05, 0.00015848931924611142, 0.00039810717055349735, 0.001] [m]
  mrn_weight = [0.06498813249567935, 0.10299924878316286, 0.16324280822504375, 0.2587224154741067, 0.4100473950220074]
  sum(mrn_weight) = 1.0
  S_mean = 0.000345165295230342 S_mean_init = 0.00037000000000000005 (diff = -2.483470476965805e-05)
 -------------------------
base lattice : xM = 12.0, yM = 10.392304845413264, zM = 52.25578117937446
dr = 0.007654655446197433
new lattice : bmin = (-0.0918558653543692, -0.07954951288348662, -0.4), bmax = (0.0918558653543692, 0.07954951288348662, 0.4)
Total mass : 2.3382685902179855e-08

Initial conditions and dust injection functions#

185 cs_g = cs
186
187
188 def scaling_rho(r):
189     x, y, z = r
190
191     loc_h = H / (2**0.5)
192     gaussian = np.exp(-(y**2) / (2 * loc_h * loc_h)) / (loc_h * np.sqrt(2 * np.pi))
193     return gaussian
194
195
196 def func_rho_t(r):
197     return rho_i * scaling_rho(r)
198
199
200 def func_rho_d_j(r, idust):
201     return (0.1 / ndust) * rho_i * scaling_rho(r)
202
203
204 def func_rho_g(r):
205     return rho_i * scaling_rho(r) - sum([func_rho_d_j(r, i) for i in range(ndust)])
206
207
208 def uint_g(r):
209     rho_g = func_rho_g(r)
210     P = rho_g * cs_g * cs_g / gamma
211     return P / ((gamma - 1) * rho_g)
212
213
214 def remap_positions_z(r):
215     x, y, z = r
216
217     rn = max(abs(zM), abs(zm))
218     z = H * erfinv(z / rn)
219
220     z = min(z, zM)
221     z = max(z, zm)
222     return (x, y, z)
223
224
225 def compute_sj_new_j(patchdata, j):
226     pmass = model.get_particle_mass()
227
228     hpart = patchdata["hpart"]
229     rho = pmass * (model.get_hfact() / np.array(hpart)) ** 3
230
231     z = patchdata["xyz"][:, 2]
232     # mask to only modify particles with |z| < H
233     mask = 1 / (1 + np.exp((np.abs(z) - 1.75 * H) / (H / 16)))
234
235     epsilon_target = epsilon_base * mrn_distribution.mrn_weight[j] * mask
236     print(f"epsilon_target = {epsilon_target} {j}")
237     s = np.sqrt(rho * epsilon_target)
238
239     print(
240         f"s = {s} {np.isnan(s).any()} epsilon_target = {epsilon_target} mrn_weight = {mrn_distribution.mrn_weight[j]} mask = {mask}, rho = {rho}"
241     )
242
243     return s

Analytical reference solution#

251 def S_rho(rho, v, vp, hz, tau, Nz):
252     """
253     Step rho forward using Crank-Nicolson on continuity equation.
254     """
255
256     npts = Nz + 2
257
258     ab_A = np.zeros((3, npts))
259     bd_main = np.zeros(npts)
260     bd_lower = np.zeros(npts)
261     bd_upper = np.zeros(npts)
262
263     # Interior points
264     for j in range(1, Nz + 1):
265         C1 = -tau / (8 * hz) * (v[j + 1] + vp[j + 1])
266         C2 = -tau / (8 * hz) * (v[j - 1] + vp[j - 1])
267
268         ab_A[2, j - 1] = C2
269         ab_A[1, j] = 1.0
270         ab_A[0, j + 1] = -C1
271
272         bd_lower[j] = -C2
273         bd_main[j] = 1.0
274         bd_upper[j] = C1
275
276     # Left boundary
277     C = -tau / (8 * hz) * (vp[0] + v[0] - vp[1] - v[1])
278
279     ab_A[1, 0] = 0.5 + C
280     ab_A[0, 1] = 0.5 + C
281
282     bd_main[0] = 0.5 - C
283     bd_upper[0] = 0.5 - C
284
285     # Right boundary
286     C = -tau / (8 * hz) * (vp[-1] + v[-1] - vp[-2] - v[-2])
287
288     ab_A[2, npts - 2] = 0.5 - C
289     ab_A[1, npts - 1] = 0.5 - C
290
291     bd_lower[npts - 1] = 0.5 + C
292     bd_main[npts - 1] = 0.5 + C
293
294     r = bd_main * rho
295     r[1:] += bd_lower[1:] * rho[:-1]
296     r[:-1] += bd_upper[:-1] * rho[1:]
297
298     ret = solve_banded((1, 1), ab_A, r)
299     ret = np.maximum(ret, 0)
300
301     ###################
302     # If there are zero values, propagate the zero value to the edges
303     ###################
304     n = len(ret)
305     center = n // 2
306
307     # Right side (center -> end)
308     right = ret[center:]
309     zero_mask_right = right == 0
310     propagate_right = np.cumsum(zero_mask_right) > 0
311     ret[center:] = right * (~propagate_right)
312
313     # Left side (center -> start)
314     left = ret[: center + 1][::-1]  # reverse
315     zero_mask_left = left == 0
316     propagate_left = np.cumsum(zero_mask_left) > 0
317     ret[: center + 1] = (left * (~propagate_left))[::-1]
318
319     return ret
320
321
322 def S_v(v, vbar, vbarp, rho, rhop, hz, zbar, tau, Nz, Stj):
323     """
324     Step velocity forward using Crank-Nicolson.
325     """
326
327     npts = Nz + 2
328
329     ab_A = np.zeros((3, npts))
330     bd_main = np.zeros(npts)
331     bd_lower = np.zeros(npts)
332     bd_upper = np.zeros(npts)
333     E0 = np.zeros_like(v)
334
335     for j in range(1, Nz + 1):
336         E0[j] = -zbar[j] / (1 + zbar[j] ** 2) ** 1.5
337
338         E1 = (vbar[j] + vbarp[j]) / (8 * hz)
339         E2 = 1.0 / (2.0 * Stj[j])
340
341         ab_A[2, j - 1] = -E1
342         ab_A[1, j] = 1.0 / tau + E2
343         ab_A[0, j + 1] = E1
344
345         bd_lower[j] = E1
346         bd_main[j] = 1.0 / tau - E2
347         bd_upper[j] = -E1
348
349     # Boundary conditions
350     ab_A[1, 0] = 1
351     ab_A[0, 1] = 1
352
353     ab_A[2, npts - 2] = 1
354     ab_A[1, npts - 1] = 1
355
356     r = bd_main * v
357     r[1:] += bd_lower[1:] * v[:-1]
358     r[:-1] += bd_upper[:-1] * v[1:]
359     r += E0
360
361     return solve_banded((1, 1), ab_A, r)
362
363
364 S_rho = maybe_njit(S_rho)
365 S_v = maybe_njit(S_v)
366
367
368 class ReferenceDustySettle:
369     def __init__(self, Nz, H, rho_mid, R0, dust_to_gas, dt):
370         self.H = H
371         self.rho_mid = rho_mid
372         self.rho_0 = rho_mid * np.sqrt(2 * np.pi)
373         self.R0 = R0
374         self.dust_to_gas = dust_to_gas
375         self.dt = dt
376
377         self.Nz = Nz
378
379         zout = reference_zrange * H / R0
380         zmin = -zout
381         zmax = zout
382
383         self.hz = (zmax - zmin) / self.Nz
384
385         # exactly Nz+2 points
386         self.zbar = np.linspace(zmin - 0.5 * self.hz, zmax + 0.5 * self.hz, Nz + 2)
387
388     def z_arr(self):
389         return self.zbar * self.R0
390
391     def rho_g_func(self, z):
392         loc_h = self.H
393         ampl = self.rho_0 / (np.sqrt(2 * np.pi))
394         return ampl * np.exp(-(z**2) / (2 * loc_h * loc_h))
395
396     def rho_g_bar_func(self, z):
397         return self.rho_g_func(z) / self.rho_mid
398
399     def rho_d_bar_func(self, z):
400
401         mask = 1 / (1 + np.exp((np.abs(z) - 1.75 * H) / (H / 16)))
402
403         return mask * self.dust_to_gas * self.rho_g_func(z) / self.rho_mid
404
405     def rho_g(self):
406         return self.rho_g_func(self.z_arr())
407
408     def rho_d_bar(self):
409         return self.rho_d_bar_func(self.z_arr())
410
411     def gen_IC(self, rhoeff, sj, cs, OmegaK):
412
413         self.z = self.z_arr()
414         self.rhog = self.rho_g()
415
416         self.rhodin = self.rho_d_bar()
417         self.rho = self.rhodin.copy()
418
419         self.vdin = np.zeros_like(self.rhodin)
420         self.v = self.vdin.copy()
421
422         self.ts = rhoeff * sj / (cs * self.rhog)
423         self.Stj = self.ts * OmegaK
424
425         self.tbar = 0.0
426
427     def advance(self, tau):
428
429         rhop = S_rho(self.rho, self.v, self.v, self.hz, tau, self.Nz)
430
431         vp = S_v(self.v, self.v, self.v, self.rho, rhop, self.hz, self.zbar, tau, self.Nz, self.Stj)
432
433         rhop = S_rho(self.rho, self.v, vp, self.hz, tau, self.Nz)
434
435         self.v = S_v(self.v, self.v, vp, self.rho, rhop, self.hz, self.zbar, tau, self.Nz, self.Stj)
436
437         self.rho = rhop
438
439         self.tbar += tau
440
441     def advance_until(self, tfinal):
442         print(f"tfinal = {tfinal}")
443         while self.tbar < tfinal:
444             print(self.tbar)
445             self.advance(self.dt)
446
447     def setup(self):
448         return
449
450
451 class ReferenceDustySettleAll:
452     def __init__(self):
453         self.rhomid = get_max_rho()
454         self.tau = reference_tau
455
456         self.vK = kep_profile(R0) * codeu.to("m") / codeu.to("s")
457         self.OmegaK = omega_k(R0) * codeu.to("s") ** -1
458         self.tK = 1 / self.OmegaK
459
460         self.rscale = R0
461         self.rhoscale = self.rhomid
462         self.vscale = self.vK
463         self.tscale = self.tK
464
465         self.cs = cs * codeu.to("m") / codeu.to("s")
466
467         print(f"vK = {self.vK}")
468         print(f"OmegaK = {self.OmegaK}")
469         print(f"tK = {self.tK}")
470
471         self.soluces = []
472         for j in range(ndust):
473             mrn_weight_j = mrn_distribution.mrn_weight[j]
474             eps_j = mrn_weight_j * epsilon_base
475             dtg_j = eps_j / (1 - epsilon_base)
476             self.soluces.append(
477                 ReferenceDustySettle(reference_Nz, H, self.rhomid, R0, dtg_j, self.tau)
478             )
479
480             rhoeff = mrn_distribution.rho_grains_si_edges[j] * np.sqrt(np.pi * gamma / 8)
481
482             self.soluces[j].setup()
483             self.soluces[j].gen_IC(rhoeff, mrn_distribution.grain_size_si[j], self.cs, self.OmegaK)
484
485     def evolve_until(self, t):
486         for k in range(ndust):
487             self.soluces[k].advance_until(t * codeu.to("s") / self.tscale)
488
489
490 reference_dusty_settle = None
491
492
493 def compute_L2_error(z, field, z_ref, field_ref):
494     """
495     Compute the L2 error between two fields on a given grid.
496     """
497
498     z_field_sort_args = np.argsort(z)
499     z_field_sorted = z[z_field_sort_args]
500     field_field_sorted = field[z_field_sort_args]
501
502     # Interpolate field to the same grid as the reference field
503     field_interp = np.interp(z_ref, z_field_sorted, field_field_sorted)
504
505     # Compute delta
506     delta = field_interp - field_ref
507
508     # Compute L2 func
509     L2_func = delta**2
510
511     trap_func = None
512     if hasattr(np, "trapezoid"):
513         trap_func = np.trapezoid
514     else:
515         trap_func = np.trapz  # noqa: NPY201
516
517     # Compute L2 integral
518     L2_integral = trap_func(L2_func, z_ref)
519
520     return np.sqrt(L2_integral)

Analysis helpers#

528 def save_analysis_data(filename, key, value, ianalysis):
529     """Helper to save analysis data to a JSON file."""
530     if shamrock.sys.world_rank() == 0:
531         filepath = os.path.join(dump_folder, filename)
532         try:
533             with open(filepath, "r") as fp:
534                 data = json.load(fp)
535         except (FileNotFoundError, json.JSONDecodeError):
536             data = {key: []}
537         data[key] = data[key][:ianalysis]
538         data[key].append({"t": model.get_time(), key: value})
539         with open(filepath, "w") as fp:
540             json.dump(data, fp, indent=4)
541
542
543 def load_data_from_json(filename, key):
544     """Helper to load analysis data from a JSON file."""
545     filepath = os.path.join(dump_folder, filename)
546     with open(filepath, "r") as fp:
547         data = json.load(fp)[key]
548     t = [d["t"] for d in data]
549     values = [d[key] for d in data]
550     return t, values
551
552
553 def get_max_rho():
554     pmass = model.get_particle_mass()
555     hfact = model.get_hfact()
556     dic = ctx.collect_data()
557     hpart = dic["hpart"]
558     rho = pmass * (hfact / np.array(hpart)) ** 3
559     to_dens = codeu.to("kg") * codeu.to("m") ** -3
560     return rho.max() * to_dens
561
562
563 def get_max_v():
564     dic = ctx.collect_data()
565     v = dic["vxyz"]
566     vnorms = np.linalg.norm(v, axis=1)
567     return vnorms.max()

Plotting#

575 def analyse_and_plot(j):
576
577     pmass = model.get_particle_mass()
578     hfact = model.get_hfact()
579
580     dic = ctx.collect_data()
581     print(dic["s_j"])
582
583     print(dic["xyz"].shape)
584
585     x = dic["xyz"][:, 0]
586     y = dic["xyz"][:, 1]
587     z = dic["xyz"][:, 2]
588     s_j = dic["s_j"].reshape(-1, ndust)
589     ds_j_dt = dic["ds_j_dt"].reshape(-1, ndust)
590     cs = dic["soundspeed"]
591     delta_v = dic["delta_v"].reshape(-1, ndust, 3)
592
593     print(s_j)
594
595     hpart = dic["hpart"]
596     rho = pmass * (hfact / np.array(hpart)) ** 3
597
598     print("compute original rho")
599     estimated_rho = [func_rho_t(dic["xyz"][kk]) for kk in range(len(dic["xyz"]))]
600
601     sz = 1
602
603     fig = plt.figure(figsize=(12, 7), dpi=dpi)
604     gs = fig.add_gridspec(2, 2, height_ratios=[1.7, 1], wspace=0.2)
605
606     ax_rho = fig.add_subplot(gs[0, 0])  # Top left
607     ax_epsilon = fig.add_subplot(gs[0, 1])  # Top right
608     ax_delta_v = fig.add_subplot(gs[1, :])  # Bottom spans both columns
609
610     time = model.get_time() - tinject
611     fig.suptitle(f"t = {time:.2f} [yr]")
612
613     fig.subplots_adjust(left=0.08, right=1.05, wspace=0.35)
614
615     to_dens = codeu.to("kg") * codeu.to("m") ** -3
616     to_speed = codeu.to("m") / codeu.to("s")
617
618     dust_cmap = plt.colormaps[cmap]
619     dust_norm = mcolors.LogNorm(
620         vmin=mrn_distribution.grain_size_si.min(), vmax=mrn_distribution.grain_size_si.max() * 10
621     )
622     dust_colors = dust_cmap(dust_norm(mrn_distribution.grain_size_si))
623
624     rho_dust_all = np.zeros(len(z))
625     epsilon_dust_all = np.zeros(len(z))
626
627     l2_error_all = [np.nan for _ in range(ndust)]
628
629     for i in range(ndust):
630         c = dust_colors[i]
631         ax_rho.scatter(z, s_j[:, i] ** 2 * to_dens, s=sz, color=c, edgecolors="none")
632         ax_epsilon.scatter(z, s_j[:, i] ** 2 / rho, s=sz, color=c, edgecolors="none")
633
634         rho_dust_all += s_j[:, i] ** 2 * to_dens
635         epsilon_dust_all += s_j[:, i] ** 2 / rho
636
637         if reference_dusty_settle is not None:
638             ax_rho.plot(
639                 reference_dusty_settle.soluces[i].zbar,
640                 reference_dusty_settle.soluces[i].rho * reference_dusty_settle.rhoscale,
641                 "--",
642                 color="0.0",
643             )
644
645             ana_epsilon = (
646                 reference_dusty_settle.soluces[i].rho
647                 * reference_dusty_settle.rhoscale
648                 / reference_dusty_settle.soluces[i].rhog
649             )
650             print(ana_epsilon.max(), ana_epsilon.min())
651             ax_epsilon.plot(reference_dusty_settle.soluces[i].zbar, ana_epsilon, "--", color="0.0")
652
653             L2_error = compute_L2_error(
654                 z, s_j[:, i] ** 2 / rho, reference_dusty_settle.soluces[i].zbar, ana_epsilon
655             )
656
657             l2_error_all[i] = L2_error
658
659     save_analysis_data("l2_error.json", "l2_error", l2_error_all, j)
660
661     dust_mass = analysis_dust_mass.get_dust_mass()
662
663     # if all dust mass is zero replace by nans
664     if np.max(dust_mass) == 0:
665         print("all dust mass is zero, replacing by nans")
666         dust_mass = [np.nan for _ in range(ndust)]
667
668     save_analysis_data("dust_mass.json", "dust_mass", dust_mass, j)
669
670     ax_rho.scatter(z, rho * to_dens, s=sz, color="0.0", edgecolors="none")
671     ax_rho.scatter(z, rho_dust_all, s=sz, color="0.5", edgecolors="none")
672     ax_epsilon.scatter(z, 1 - epsilon_dust_all, s=sz, color="0.0", edgecolors="none")
673     ax_epsilon.scatter(z, epsilon_dust_all, s=sz, color="0.5", edgecolors="none")
674
675     range_plot = 2.5 * H
676
677     ax_rho.set_ylabel(r"$\rho$ [kg/m$^3$]")
678     ax_rho.set_xlabel(r"$z$")
679     ax_rho.set_yscale("log")
680     ax_rho.set_ylim(1e-20, 1e-8)
681     ax_rho.set_xlim(-range_plot, range_plot)
682
683     ax_epsilon.set_ylabel(r"$\epsilon_j$")
684     ax_epsilon.set_xlabel(r"$z$")
685     ax_epsilon.set_yscale("log")
686     ax_epsilon.set_ylim(1e-4, 1e-1)  # if you want to see the dust only
687     ax_epsilon.set_xlim(-range_plot, range_plot)
688
689     ax_delta_v.set_ylabel(r"$\Delta v_z$ [m/s]")
690     ax_delta_v.set_xlabel(r"$z$")
691     ax_delta_v.set_xlim(-range_plot, range_plot)
692     ax_delta_v.set_yscale("symlog", linthresh=1.0)
693     ax_delta_v.set_ylim(-4e3, 4e3)
694
695     for i in range(ndust):
696         c = dust_colors[i]
697         ax_delta_v.scatter(z, delta_v[:, i, 2] * to_speed, s=sz, color=c, edgecolors="none")
698
699         if reference_dusty_settle is not None:
700             ax_delta_v.plot(
701                 reference_dusty_settle.soluces[i].zbar,
702                 reference_dusty_settle.soluces[i].v * reference_dusty_settle.vscale,
703                 "--",
704                 color="0.0",
705             )
706
707     gas_handle = Line2D(
708         [0],
709         [0],
710         linestyle="none",
711         marker="o",
712         markersize=5,
713         markerfacecolor="0.",
714         markeredgecolor="none",
715         label="gas",
716     )
717
718     dust_handle = Line2D(
719         [0],
720         [0],
721         linestyle="none",
722         marker="o",
723         markersize=5,
724         markerfacecolor="0.5",
725         markeredgecolor="none",
726         label="dust",
727     )
728
729     analytic_handle = Line2D(
730         [0],
731         [0],
732         linestyle="--",
733         color="0.0",
734         label="reference",
735     )
736
737     ax_rho.legend(handles=[gas_handle, dust_handle, analytic_handle], loc="upper right", fontsize=8)
738
739     dust_sm = cm.ScalarMappable(cmap=dust_cmap, norm=dust_norm)
740     dust_sm.set_array([])
741     cbar = fig.colorbar(
742         dust_sm, ax=[ax_rho, ax_epsilon, ax_delta_v], pad=0.03, shrink=0.95, aspect=40
743     )
744     cbar.set_label(r"grain size $s$ [m]")
745
746     os.makedirs(f"{dump_folder}/plots", exist_ok=True)
747     plt.savefig(f"{dump_folder}/plots/vert_slice_dens_{j:04d}.png")
748     plt.close()
749
750     fig, axs = plt.subplots(nrows=1, ncols=2, figsize=(12, 5), dpi=dpi)
751     time = model.get_time() - tinject
752     fig.suptitle(f"t = {time:.2f} [yr]")
753
754     fig.subplots_adjust(left=0.07, right=1.05, wspace=0.35)
755
756     for i in range(ndust):
757         c = dust_colors[i]
758         axs[0].scatter(z, s_j[:, i], s=sz, color=c, edgecolors="none")
759         axs[1].scatter(z, ds_j_dt[:, i], s=sz, color=c, edgecolors="none")
760
761     axs[0].set_ylabel(r"$s_j$")
762     axs[0].set_xlabel(r"$z$")
763     axs[0].set_xlim(-4 * H, 4 * H)
764     axs[0].set_yscale("log")
765     axs[0].set_ylim(1e-20, 1e-1)
766
767     axs[1].set_ylabel(r"$\dot{s}_j$")
768     axs[1].set_xlabel(r"$z$")
769     axs[1].set_xlim(-4 * H, 4 * H)
770     axs[1].set_yscale("symlog", linthresh=1e-10)
771
772     dust_sm = cm.ScalarMappable(cmap=dust_cmap, norm=dust_norm)
773     dust_sm.set_array([])
774     cbar = fig.colorbar(dust_sm, ax=axs, pad=0.02, shrink=0.85)
775     cbar.set_label(r"grain size $s$ [m]")
776
777     plt.savefig(f"{dump_folder}/plots/vert_slice_s_{j:04d}.png")
778     plt.close()

Simulation setup and restore#

785 if shamrock.sys.world_rank() == 0:
786     os.makedirs(sim_folder, exist_ok=True)
787     os.makedirs(dump_folder, exist_ok=True)
788
789 ctx = shamrock.Context()
790 ctx.pdata_layout_new()
791
792 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
793
794 dump_helper = shamrock.utils.dump.ShamrockDumpHandleHelper(model, dump_folder)
795
796
797 def setup_model():
798     global bmin, bmax
799
800     cfg = model.gen_default_config()
801     cfg.set_artif_viscosity_VaryingCD10(
802         alpha_min=av_alpha_min,
803         alpha_max=av_alpha_max,
804         sigma_decay=av_sigma_decay,
805         alpha_u=av_alpha_u,
806         beta_AV=av_beta_AV,
807     )
808
809     cfg.set_dust_mode_monofluid_tva(
810         nvar=ndust, C_1_fluid=0.1, C_drift=1.0, cfl_density_threshold=1e-50
811     )
812     cfg.set_dust_drag_epstein(gamma, mrn_distribution.grain_size, mrn_distribution.rho_grains)
813     cfg.add_ext_force_vertical_disc_potential(central_mass=1, R0=1)
814     cfg.add_ext_force_velocity_dissipation(eta=vel_dissipation_eta)
815     cfg.set_two_stage_search(False)
816     cfg.set_show_cfl_detail(True)
817     cfg.set_boundary_periodic()
818     cfg.set_units(codeu)
819     cfg.set_eos_isothermal(cs)
820     cfg.print_status()
821     model.set_solver_config(cfg)
822
823     model.init_scheduler(scheduler_split_val, scheduler_merge_val)
824
825     model.resize_simulation_box(bmin, bmax)
826
827     setup = model.get_setup()
828     gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
829     setup.apply_setup(gen, insert_step=scheduler_split_val)
830
831     pmass = model.total_mass_to_part_mass(totmass)
832     model.set_particle_mass(pmass)
833     print("Current part mass :", pmass)
834
835     # Correct the barycenter
836     analysis_barycenter = shamrock.model_sph.analysisBarycenter(model=model)
837     barycenter, disc_mass = analysis_barycenter.get_barycenter()
838
839     if shamrock.sys.world_rank() == 0:
840         print(f"disc barycenter = {barycenter}")
841
842     model.apply_position_offset((-barycenter[0], -barycenter[1], -barycenter[2]))
843
844     model.remap_positions(remap_positions_z)
845     model.set_field_value_lambda_f64("uint", uint_g)
846
847     if random_vel_pert:
848         rng = np.random.default_rng(42)
849
850         ampl = dr / 1.0
851         print(f"random velocity perturbation amplitude = {ampl}")
852
853         def pert_func(r):
854             return tuple(rng.uniform(-ampl, ampl, size=3))
855
856         model.set_field_value_lambda_f64_3("vxyz", pert_func)
857
858     model.set_cfl_cour(cfl_cour_setup)
859     model.set_cfl_force(cfl_force_setup)
860
861     model.timestep()
862
863
864 analysis_dust_mass = shamrock.model_sph.analysisDustMass(model=model)
865 pmass = model.get_particle_mass()

Run simulation#

872 from shamrock.utils.SimulationRunner import SimulationRunner, callback, simulation_setup
873
874
875 class Simulation(SimulationRunner):
876     # Use the global vars defined at the top of the file
877     t_end = t_end
878     dump_prefix = dump_folder + "dump_"
879
880     @callback(at_tsim=[tinject])
881     def inject_dust(self, _):
882         max_v = get_max_v()
883         print(f"max_v = {max_v}")
884
885         if max_v > max_v_inject_threshold:
886             raise ValueError("max_v is too high, please increase the injection time")
887
888         for k in range(ndust):
889
890             def compute_sj_new(patchdata):
891                 return compute_sj_new_j(patchdata, k)
892
893             self.model.overwrite_field_value_f64("s_j", compute_sj_new, k)
894
895             self.model.set_cfl_cour(cfl_cour_inject)
896             self.model.set_cfl_force(cfl_force_inject)
897
898         self.model.set_dt(0.0)  # to help the corrector on next step after adding dust
899
900     @callback(tsim_interval=0.1)  # Do the analysis every dt_stop
901     def analysis_plots(self, j):
902         global reference_dusty_settle
903
904         model_time = self.model.get_time()
905
906         if model_time > tinject and reference_dusty_settle is None:
907             reference_dusty_settle = ReferenceDustySettleAll()
908
909         if reference_dusty_settle is not None:
910             reference_dusty_settle.evolve_until(model_time - tinject)
911
912         analyse_and_plot(j)
913
914     @callback(walltime_interval=30.0)  # Checkpoint the simulation every 30 seconds
915     def checkpoint(self, icheckpoint):
916         self.do_checkpoint(icheckpoint, purge_old_dumps=True, keep_first=1, keep_last=3)
917
918     @simulation_setup
919     def setup(self):
920         setup_model()
921
922
923 Simulation(model).run()
[Simulation] Running setup function: setup

----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "gamma": 1.4,
                "grains_densities": [
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797,
                    3872442.9558226797
                ],
                "grains_sizes": [
                    1.0594356624496489e-16,
                    2.661182065564636e-16,
                    6.684587122268445e-16,
                    1.6790923692669784e-15,
                    4.217689339612995e-15
                ],
                "type": "epstein_drag"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 1e-50,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 5,
                "pure_diffusion_mode": false,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 0.31394308776061347,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": [
                {
                    "R0": 1.0,
                    "central_mass": 1.0,
                    "force_type": "vertical_disc_potential"
                },
                {
                    "eta": 5.0,
                    "force_type": "velocity_dissipation"
                }
            ]
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": true,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": {
            "unit_current": 1.0,
            "unit_length": 149597870700.0,
            "unit_lumint": 1.0,
            "unit_mass": 1.98847e+30,
            "unit_qte": 1.0,
            "unit_temperature": 1.0,
            "unit_time": 31536000.0
        },
        "use_two_stage_search": false
    }
]
------------------------------------

---------------------------- 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 = 9216 ( 9.2e+03 ) Ntotal = 9216 ( 9.2e+03 rank min = 3.3e+06 max = 9.2e+03) rate = 9.216000e+03 N.s^-1
SPH setup: the generation step took : 0.006177687 s
SPH setup: final particle count = 9216 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     : 16.59 us   (81.7%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (0.1%)
   patch tree reduce : 1.33 us    (0.2%)
   gen split merge   : 1.53 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.1%)
   LB compute        : 848.65 us  (98.4%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (0.6%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected         9216 / 9216 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.023254337 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 |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.034452582 s
Current part mass : 2.537183800149724e-12
disc barycenter = (-0.0038273277230987186, -0.004419417382415923, -0.006249999999999986)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (68.8%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (0.6%)
   patch tree reduce : 1.20 us    (0.3%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 611.00 ns  (0.2%)
   LB compute        : 389.36 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (0.7%)
random velocity perturbation amplitude = 0.007654655446197433
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.24 us   (2.8%)
   patch tree reduce : 1.87 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 402.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 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: 0.6666666666666667
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.008420120990817176 unconverged cnt = 2016
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7777777777777777
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.009262133089898894 unconverged cnt = 1440
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7777777777777777
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.010188346398888784 unconverged cnt = 864
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.8888888888888888
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.011207181038777663 unconverged cnt = 576
Warning: High interface/patch volume 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.125
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01232789914265543 unconverged cnt = 576
Warning: High interface/patch volume 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.125
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.013560689056920976 unconverged cnt = 288
Warning: High interface/patch volume 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.3750000000000002
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.014916757962613074 unconverged cnt = 288
Warning: High interface/patch volume 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.4999999999999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.005075413097613e-13,-6.800307888415156e-14,2.5704285388467615e-13)
    sum a = (-2.5025377065489026e-12,3.400153944215811e-13,-1.2852142694148155e-12)
    sum e = 4.116048634543744e-09
    sum de = -5.609410045537116e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.36e-05 |
|       force |  1.35e-04 |
| dust1_fluid |  1.99e-05 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 1.986521733601607e-05 cfl multiplier : 0.01                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.2744e+04 | 9216 |      1 | 7.232e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

[Simulation] Setting up callbacks states
[Simulation] Setup done

[Simulation] Evolve until next trigger(s) :
   -> t = 0.0 (current = 0.0)
   -> iter = None (current = 0)
   -> walltime = 0.0 (current = 11.702151012)

Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = 0.00s)        [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 11.702327543 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 0):
   -> t = 0.0 >= 0.0
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
/work/doc/sphinx/examples/sph/run_dustysettle_tva.py:764: UserWarning: Data has no positive values, and therefore cannot be log-scaled.
  axs[0].set_yscale("log")
--------------------------------
[Simulation] Triggering callback "checkpoint" (counter = 0):
   -> walltime = 11.702389174 >= 0.0
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000000.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.67 us   (70.7%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000000.sham              [Shamrock Dump][rank=0]
              - took 2.44 ms, bandwidth = 1.43 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.0 -> 0.1
[Simulation] Advancing callback "checkpoint"
   -> walltime = 11.702389174 -> 41.702389174000004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.1 (current = 0.0)
   -> iter = None (current = 0)
   -> walltime = 41.702389174000004 (current = 14.623356449000001)

Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = 41.70s)       [SPH][rank=0]
---------------- t = 0, dt = 1.986521733601607e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.69 us    (1.1%)
   patch tree reduce : 1.46 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        : 309.05 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.004578278543294e-13,-6.799632440444362e-14,2.5701732282389003e-13)
    sum a = (-2.502289139272249e-12,3.399816220214435e-13,-1.285288166863713e-12)
    sum e = 4.116048542651101e-09
    sum de = -6.876973310054512e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.48e-03 |
|       force |  4.59e-03 |
| dust1_fluid |  6.75e-04 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0006754121764076657 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.3440e+04 | 9216 |      1 | 2.756e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2594858924591249 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 6.64s (niter = 24) global walltime = 14.90s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 1.986521733601607e-05, dt = 0.0006754121764076657 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 325.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.987677537696939e-13,-6.776669701262343e-14,2.561492228118017e-13)
    sum a = (-2.4938387688487056e-12,3.388334850622679e-13,-1.287788493298566e-12)
    sum e = 4.116066448471238e-09
    sum de = -5.0202423100959314e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.44e-03 |
|       force |  7.55e-03 |
| dust1_fluid |  1.11e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0011121634039081014 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.6634e+04 | 9216 |      1 | 2.516e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.665372464362102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0006952773937436818, dt = 0.0011121634039081014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 294.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.959970512972727e-13,-6.739024654335892e-14,2.547161472021211e-13)
    sum a = (-2.4799852564864514e-12,3.369512327177717e-13,-1.291836978858352e-12)
    sum e = 4.116034089281059e-09
    sum de = -1.222108113062998e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.08e-03 |
|       force |  9.50e-03 |
| dust1_fluid |  1.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001402927827870523 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.5825e+04 | 9216 |      1 | 2.573e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.563562915863038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0018074407976517832, dt = 0.001402927827870523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 267.90 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.925255146529724e-13,-6.691857496843221e-14,2.5290154186667014e-13)
    sum a = (-2.4626275732654723e-12,3.3459287484188454e-13,-1.2968195739441273e-12)
    sum e = 4.1158570841890045e-09
    sum de = -2.1415156620219106e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.48e-03 |
|       force |  1.08e-02 |
| dust1_fluid |  1.60e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0015964444292916348 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.6934e+04 | 9216 |      1 | 2.495e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.240781103238 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.003210368625522306, dt = 0.0015964444292916348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 294.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.886062423706212e-13,-6.638607034025663e-14,2.5082774637139505e-13)
    sum a = (-2.443031211851929e-12,3.319303517010711e-13,-1.3023223929824691e-12)
    sum e = 4.115476554574869e-09
    sum de = -3.2024180133458807e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.73e-03 |
|       force |  1.16e-02 |
| dust1_fluid |  1.73e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017252952686945076 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.2301e+04 | 9216 |      1 | 2.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.14329351954325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.004806813054813941, dt = 0.0017252952686945076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 306.60 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.844069344305467e-13,-6.581551776004793e-14,2.485764632360878e-13)
    sum a = (-2.4220346721526596e-12,3.2907758880114417e-13,-1.3080713872862769e-12)
    sum e = 4.1148567316014085e-09
    sum de = -4.3660091925494383e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.88e-03 |
|       force |  1.22e-02 |
| dust1_fluid |  1.81e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018112373959054222 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.6888e+04 | 9216 |      1 | 2.498e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.860171627026048 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.006532108323508448, dt = 0.0018112373959054222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.0%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 330.90 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.800381672734649e-13,-6.522194105422468e-14,2.462022760665793e-13)
    sum a = (-2.4001908363682252e-12,3.261097052712104e-13,-1.3138874219996046e-12)
    sum e = 4.11397614105257e-09
    sum de = -5.60594624126666e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.97e-03 |
|       force |  1.25e-02 |
| dust1_fluid |  1.87e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018687873233242307 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.6657e+04 | 9216 |      1 | 2.514e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.935591664130744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00834334571941387, dt = 0.0018687873233242307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 285.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.755725032510227e-13,-6.461519914181797e-14,2.437416327982396e-13)
    sum a = (-2.3778625162556205e-12,3.230759957091667e-13,-1.319654610845325e-12)
    sum e = 4.112821778496794e-09
    sum de = -6.904165825948942e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.01e-03 |
|       force |  1.28e-02 |
| dust1_fluid |  1.91e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019076243203216925 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.7288e+04 | 9216 |      1 | 2.472e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.219784365785316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.010212133042738101, dt = 0.0019076243203216925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 291.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.710572983254202e-13,-6.400172619407817e-14,2.412188387434793e-13)
    sum a = (-2.3552864916270918e-12,3.200086309708545e-13,-1.325298688228045e-12)
    sum e = 4.1113854322867875e-09
    sum de = -8.248147566412318e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.03e-03 |
|       force |  1.30e-02 |
| dust1_fluid |  1.93e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019341981973570942 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.7056e+04 | 9216 |      1 | 2.487e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.613112871872733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012119757363059794, dt = 0.0019341981973570942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 1.39 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 385.88 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (74.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.665232407258743e-13,-6.338569176670213e-14,2.386500650201299e-13)
    sum a = (-2.332616203629318e-12,3.169284588335612e-13,-1.330772521674813e-12)
    sum e = 4.109661446070754e-09
    sum de = -9.629093722047569e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.02e-03 |
|       force |  1.31e-02 |
| dust1_fluid |  1.95e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001952803048494872 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    | 2.8925e+04 | 9216 |      1 | 3.186e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.8544662361833 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.014053955560416888, dt = 0.001952803048494872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 307.15 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.61990025107548e-13,-6.276977173783554e-14,2.360460346435297e-13)
    sum a = (-2.3099501255376395e-12,3.1384885868906267e-13,-1.3360465285907225e-12)
    sum e = 4.107645406576169e-09
    sum de = -1.1040706513959358e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.99e-03 |
|       force |  1.33e-02 |
| dust1_fluid |  1.97e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001966293559636353 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.5886e+04 | 9216 |      1 | 2.568e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.37454272968515 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.01600675860891176, dt = 0.001966293559636353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.1%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.74 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.574701162458208e-13,-6.215565967457042e-14,2.3341382541063555e-13)
    sum a = (-2.2873505812279138e-12,3.1077829837403357e-13,-1.3411023879093104e-12)
    sum e = 4.105333408143501e-09
    sum de = -1.2478363565354498e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.96e-03 |
|       force |  1.34e-02 |
| dust1_fluid |  1.98e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019765626520386894 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.5901e+04 | 9216 |      1 | 2.567e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.57484802271672 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.017973052168548113, dt = 0.0019765626520386894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 337.90 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5297124318405897e-13,-6.154440570842784e-14,2.3075808186626695e-13)
    sum a = (-2.2648562159207367e-12,3.077220285415322e-13,-1.3459289408000236e-12)
    sum e = 4.1027216670243566e-09
    sum de = -1.3938562441379015e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.91e-03 |
|       force |  1.35e-02 |
| dust1_fluid |  1.98e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019844467413027713 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.6398e+04 | 9216 |      1 | 2.532e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.10274412358225 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0199496148205868, dt = 0.0019844467413027713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 280.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4849898740802975e-13,-6.093676818606353e-14,2.2808238757361235e-13)
    sum a = (-2.2424949370404124e-12,3.046838409309043e-13,-1.3505185921121408e-12)
    sum e = 4.099806855512825e-09
    sum de = -1.5418234802429419e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.86e-03 |
|       force |  1.37e-02 |
| dust1_fluid |  1.99e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001990618127128208 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.5531e+04 | 9216 |      1 | 2.594e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.542750060257315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02193406156188957, dt = 0.001990618127128208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.55 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 336.77 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.440572237198667e-13,-6.033327357001432e-14,2.2538946682382364e-13)
    sum a = (-2.220286118598508e-12,3.016663678498013e-13,-1.354866441410338e-12)
    sum e = 4.09658610948107e-09
    sum de = -1.6914699060258171e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.81e-03 |
|       force |  1.38e-02 |
| dust1_fluid |  2.00e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00199601427291842 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.3002e+04 | 9216 |      1 | 2.793e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.661954694736576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.023924679689017778, dt = 0.00199601427291842 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.2%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 307.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3964760557546807e-13,-5.97341465124342e-14,2.2268080661505514e-13)
    sum a = (-2.1982380278778137e-12,2.9867073256296307e-13,-1.3589703802990028e-12)
    sum e = 4.093056205216828e-09
    sum de = -1.8425928767451646e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.75e-03 |
|       force |  1.40e-02 |
| dust1_fluid |  2.00e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002000996551365304 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.2948e+04 | 9216 |      1 | 2.797e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.689595068745277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0259206939619362, dt = 0.002000996551365304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.4%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 1.60 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 265.27 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3527094301448943e-13,-5.913949707197573e-14,2.199574158104439e-13)
    sum a = (-2.1763547150722874e-12,2.956974853606661e-13,-1.3628293932369263e-12)
    sum e = 4.089213764541787e-09
    sum de = -1.9950165553485008e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.70e-03 |
|       force |  1.42e-02 |
| dust1_fluid |  2.01e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002005800234110224 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.5480e+04 | 9216 |      1 | 2.598e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.732363524263803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.027921690513301504, dt = 0.002005800234110224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 291.41 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.30927504434218e-13,-5.854936171531226e-14,2.1721999135864966e-13)
    sum a = (-2.1546375221705067e-12,2.9274680857702664e-13,-1.3664431143776693e-12)
    sum e = 4.0850553926307705e-09
    sum de = -2.1485873584467287e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.63e-03 |
|       force |  1.36e-02 |
| dust1_fluid |  2.01e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020105763606762905 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.6210e+04 | 9216 |      1 | 2.545e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.370904923889743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.029927490747411727, dt = 0.0020105763606762905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 288.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2661722134161877e-13,-5.796373113641648e-14,2.1446902893337365e-13)
    sum a = (-2.1330861067085353e-12,2.8981865568265947e-13,-1.3698115389682447e-12)
    sum e = 4.0805776925559565e-09
    sum de = -2.303171563241675e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.54e-03 |
|       force |  1.30e-02 |
| dust1_fluid |  2.02e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002015419756253082 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.6152e+04 | 9216 |      1 | 2.549e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39292835436665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03193806710808802, dt = 0.002015419756253082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 268.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2233982284360294e-13,-5.738256852951749e-14,2.1170489745790522e-13)
    sum a = (-2.111699114218624e-12,2.8691284264772964e-13,-1.3729348410320643e-12)
    sum e = 4.075777275418211e-09
    sum de = -2.458654579717396e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.44e-03 |
|       force |  1.24e-02 |
| dust1_fluid |  2.02e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00202038782509025 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.6294e+04 | 9216 |      1 | 2.539e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57325140214424 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.033953486864341104, dt = 0.00202038782509025 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 280.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1809492354657733e-13,-5.680582153186792e-14,2.089278892382013e-13)
    sum a = (-2.0904746177333317e-12,2.8402910765952565e-13,-1.3758132591685358e-12)
    sum e = 4.0706507629683516e-09
    sum de = -2.6149411705251167e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.34e-03 |
|       force |  1.18e-02 |
| dust1_fluid |  2.03e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020255132020163933 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.0247e+04 | 9216 |      1 | 3.047e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.871493442444393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.035973874689431355, dt = 0.0020255132020163933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 5.06 us    (1.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 326.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1388208046702467e-13,-5.623342995607788e-14,2.0613825355752374e-13)
    sum a = (-2.0694104023352177e-12,2.811671497799794e-13,-1.3784470254468293e-12)
    sum e = 4.065194782118921e-09
    sum de = -2.7719560984718798e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.24e-03 |
|       force |  1.12e-02 |
| dust1_fluid |  2.03e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020308123204128828 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    | 3.4653e+04 | 9216 |      1 | 2.660e-01 | 0.0% |   1.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.41770306683128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03799938789144775, dt = 0.0020308123204128828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 288.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0970082924916095e-13,-5.566533071094439e-14,2.0333621899107966e-13)
    sum a = (-2.0485041462458363e-12,2.783266535550234e-13,-1.3808363212529723e-12)
    sum e = 4.05940595141294e-09
    sum de = -2.9296448048182155e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.14e-03 |
|       force |  1.06e-02 |
| dust1_fluid |  2.04e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020362912776681254 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.5370e+04 | 9216 |      1 | 2.606e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.058487486060958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.040030200211860635, dt = 0.0020362912776681254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 289.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0555070646511394e-13,-5.510146083133081e-14,2.005220079285934e-13)
    sum a = (-2.0277535323249114e-12,2.755073041573927e-13,-1.3829812496806717e-12)
    sum e = 4.053280859648945e-09
    sum de = -3.087973780670018e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.03e-03 |
|       force |  1.01e-02 |
| dust1_fluid |  2.04e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020419499354741477 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.5400e+04 | 9216 |      1 | 2.603e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.158264467104576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04206649148952876, dt = 0.0020419499354741477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 271.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.014312624176933e-13,-5.454175921767809e-14,1.976958456055321e-13)
    sum a = (-2.007156312088223e-12,2.7270879608786143e-13,-1.384881817743021e-12)
    sum e = 4.046816036992354e-09
    sum de = -3.2469302855388813e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.93e-03 |
|       force |  9.63e-03 |
| dust1_fluid |  2.05e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020477848993152932 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.4486e+04 | 9216 |      1 | 2.672e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.50730678957436 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.04s (niter = 19) global walltime = 21.25s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.04410844142500291, dt = 0.0020477848993152932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.3%)
   patch tree reduce : 1.92 us    (0.4%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 445.80 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.973420672774982e-13,-5.3986167469825033e-14,1.9485796509949926e-13)
    sum a = (-1.986710336387583e-12,2.6993083734923434e-13,-1.3865379238170183e-12)
    sum e = 4.040007918895504e-09
    sum de = -3.406520997616654e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.82e-03 |
|       force |  9.18e-03 |
| dust1_fluid |  2.05e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020537918353970663 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.4713e+04 | 9216 |      1 | 2.655e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.76711989452665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.046156226324318206, dt = 0.0020537918353970663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 303.57 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.932827122894745e-13,-5.343463005093255e-14,1.920086091574713e-13)
    sum a = (-1.9664135614468625e-12,2.6717315025530115e-13,-1.3879493475390003e-12)
    sum e = 4.032852803162934e-09
    sum de = -3.566769034052284e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.70e-03 |
|       force |  8.79e-03 |
| dust1_fluid |  2.06e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002059967451211911 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.5327e+04 | 9216 |      1 | 2.609e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.341230943236933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04821001815971527, dt = 0.002059967451211911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.3%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 283.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8925280703260185e-13,-5.288709391518597e-14,1.8914802929267378e-13)
    sum a = (-1.946264035162367e-12,2.644354695765708e-13,-1.3891157399792869e-12)
    sum e = 4.025346801027005e-09
    sum de = -3.7277085265399536e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.57e-03 |
|       force |  8.46e-03 |
| dust1_fluid |  2.07e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00206596317409613 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.4696e+04 | 9216 |      1 | 2.656e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.9192700960842 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.05026998561092718, dt = 0.00206596317409613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 289.69 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.852526508930412e-13,-5.2343599739661326e-14,1.8627696596380637e-13)
    sum a = (-1.926263254465256e-12,2.6171799869804935e-13,-1.3900364768437391e-12)
    sum e = 4.017487032858017e-09
    sum de = -3.889347687367574e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.45e-03 |
|       force |  8.19e-03 |
| dust1_fluid |  2.07e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020719035689124063 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.4208e+04 | 9216 |      1 | 2.694e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.60680541392284 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05233594878502331, dt = 0.0020719035689124063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 278.82 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (53.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8128227961963324e-13,-5.18041523814914e-14,1.8339599332228796e-13)
    sum a = (-1.906411398099025e-12,2.5902076190717007e-13,-1.3907109845030453e-12)
    sum e = 4.009270202318326e-09
    sum de = -4.0516925786494056e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.33e-03 |
|       force |  8.01e-03 |
| dust1_fluid |  2.08e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020775721307582395 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.4764e+04 | 9216 |      1 | 2.651e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.13612112815594 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.054407852353935714, dt = 0.0020775721307582395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 280.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.773421379952111e-13,-5.126881227253087e-14,1.8050599218152565e-13)
    sum a = (-1.8867106899770987e-12,2.5634406136321096e-13,-1.39113859637517e-12)
    sum e = 4.0006936816586915e-09
    sum de = -4.21469692448963e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.21e-03 |
|       force |  7.93e-03 |
| dust1_fluid |  2.08e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020835369304047224 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.4534e+04 | 9216 |      1 | 2.669e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.026381246162988 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05648542448469395, dt = 0.0020835369304047224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 293.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7343157141672766e-13,-5.073749047301681e-14,1.7760705934325824e-13)
    sum a = (-1.8671578570832727e-12,2.536874523648249e-13,-1.3913186963189276e-12)
    sum e = 3.991752648125939e-09
    sum de = -4.378294525736281e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.10e-03 |
|       force |  7.97e-03 |
| dust1_fluid |  2.09e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020898473270274864 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.4264e+04 | 9216 |      1 | 2.690e-01 | 0.0% |   0.7% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.886645088888432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05856896141509867, dt = 0.0020898473270274864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 294.73 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6954986608467765e-13,-5.021009000027472e-14,1.7469922806232654e-13)
    sum a = (-1.8477493304238646e-12,2.510504500018456e-13,-1.391250418666658e-12)
    sum e = 3.98244169717519e-09
    sum de = -4.542313881316325e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.00e-03 |
|       force |  8.08e-03 |
| dust1_fluid |  2.10e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002003232693174536 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.3170e+04 | 9216 |      1 | 2.778e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.07812638709126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06065880874212616, dt = 0.002003232693174536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 280.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6586867464596395e-13,-4.970993299736282e-14,1.719123010842873e-13)
    sum a = (-1.8293433732300503e-12,2.4854966498555697e-13,-1.390952148095108e-12)
    sum e = 3.97316321714197e-09
    sum de = -4.698911051102026e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.92e-03 |
|       force |  8.17e-03 |
| dust1_fluid |  2.10e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019194105739597617 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    | 3.4597e+04 | 9216 |      1 | 2.664e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.07270065328346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0626620414353007, dt = 0.0019194105739597617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 318.97 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6237584933958003e-13,-4.923536896938448e-14,1.6924279157604858e-13)
    sum a = (-1.8118792466990171e-12,2.4617684484679203e-13,-1.390453588143922e-12)
    sum e = 3.9639770045803895e-09
    sum de = -4.848091837072379e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.85e-03 |
|       force |  8.34e-03 |
| dust1_fluid |  2.11e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001850712614175284 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    | 3.4228e+04 | 9216 |      1 | 2.693e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.66277387427937 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06458145200926046, dt = 0.001850712614175284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 277.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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: 1.638888888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.590393419769167e-13,-4.8782043585338704e-14,1.6666994005168134e-13)
    sum a = (-1.7951967098856135e-12,2.4391021792678797e-13,-1.389776438857195e-12)
    sum e = 3.954850971680418e-09
    sum de = -4.990566952230482e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.80e-03 |
|       force |  8.24e-03 |
| dust1_fluid |  2.11e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017962037952117497 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.4440e+04 | 9216 |      1 | 2.676e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.897521912896494 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06643216462343575, dt = 0.0017962037952117497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.3%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 294.35 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6386718750000002
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.55830240124125e-13,-4.8346028563723435e-14,1.6417424494193427e-13)
    sum a = (-1.7791512006206517e-12,2.4173014281860806e-13,-1.388935497817079e-12)
    sum e = 3.945744404077658e-09
    sum de = -5.126861149285262e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.75e-03 |
|       force |  8.24e-03 |
| dust1_fluid |  2.12e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017549191357910203 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.4240e+04 | 9216 |      1 | 2.692e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.024462427771727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0682283684186475, dt = 0.0017549191357910203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 293.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6384548611111114
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5272238413900816e-13,-4.7923769639989665e-14,1.6173753070932482e-13)
    sum a = (-1.763611920695568e-12,2.396188481992871e-13,-1.3879397575205616e-12)
    sum e = 3.936613997947262e-09
    sum de = -5.257342928948623e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.73e-03 |
|       force |  8.36e-03 |
| dust1_fluid |  2.12e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017259370034586772 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.3640e+04 | 9216 |      1 | 2.740e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.06056650263212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06998328755443853, dt = 0.0017259370034586772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.3%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 278.57 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638346354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.496921361551882e-13,-4.751205517881977e-14,1.593429078450831e-13)
    sum a = (-1.748460680775898e-12,2.3756027589370474e-13,-1.3867933018807533e-12)
    sum e = 3.9274149611744045e-09
    sum de = -5.382231624805106e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.71e-03 |
|       force |  8.54e-03 |
| dust1_fluid |  2.13e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001708479640077221 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.4045e+04 | 9216 |      1 | 2.707e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.95285446762237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0717092245578972, dt = 0.001708479640077221 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 330.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6381293402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4671800172342037e-13,-4.7107964767221915e-14,1.5697458907867888e-13)
    sum a = (-1.733590008616524e-12,2.3553982383606224e-13,-1.3854959607235682e-12)
    sum e = 3.918101417420636e-09
    sum de = -5.501613979445885e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.70e-03 |
|       force |  8.61e-03 |
| dust1_fluid |  2.13e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017019162029612513 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.3205e+04 | 9216 |      1 | 2.776e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.159911939936762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07341770419797443, dt = 0.0017019162029612513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1.63 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 259.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6381293402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4378027991877775e-13,-4.6708821675194955e-14,1.5461769929466372e-13)
    sum a = (-1.7189013995938485e-12,2.335441083756429e-13,-1.3840437749620872e-12)
    sum e = 3.908626570702864e-09
    sum de = -5.615463112603158e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.71e-03 |
|       force |  8.64e-03 |
| dust1_fluid |  2.13e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017057717696673273 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.4473e+04 | 9216 |      1 | 2.673e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.918093029582568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07511962040093569, dt = 0.0017057717696673273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 325.86 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.638237847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4086072582735645e-13,-4.631214699839682e-14,1.5225807224464548e-13)
    sum a = (-1.7043036291370227e-12,2.315607349920824e-13,-1.382429291252105e-12)
    sum e = 3.898942643612632e-09
    sum de = -5.723660523979644e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.70e-03 |
|       force |  8.81e-03 |
| dust1_fluid |  2.14e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0016989955841942375 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.3669e+04 | 9216 |      1 | 2.737e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.4343200463736 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.07682539217060301, dt = 0.0016989955841942375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 295.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6376953124999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3797757171969174e-13,-4.59204179233344e-14,1.4991070795352412e-13)
    sum a = (-1.689887858598768e-12,2.2960208961616923e-13,-1.380664384366186e-12)
    sum e = 3.8891173152955194e-09
    sum de = -5.824720848933374e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.70e-03 |
|       force |  9.17e-03 |
| dust1_fluid |  2.15e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0016959491669498224 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.4153e+04 | 9216 |      1 | 2.698e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.66614345268881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07852438775479725, dt = 0.0016959491669498224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 276.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6379123263888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3512385397891433e-13,-4.553268831563989e-14,1.4757067062563931e-13)
    sum a = (-1.6756192698940565e-12,2.276634415781024e-13,-1.3787478523205564e-12)
    sum e = 3.87914664580275e-09
    sum de = -5.918433610013345e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.70e-03 |
|       force |  9.44e-03 |
| dust1_fluid |  2.15e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017016172296054457 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.3480e+04 | 9216 |      1 | 2.753e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.17994568460289 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.75s (niter = 14) global walltime = 26.40s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.08022033692174707, dt = 0.0017016172296054457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.6379123263888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.322846907595635e-13,-4.514693620516685e-14,1.4522619469540618e-13)
    sum a = (-1.6614234537975734e-12,2.2573468102592727e-13,-1.3766710453564124e-12)
    sum e = 3.868992934733507e-09
    sum de = -6.004917441923312e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.72e-03 |
|       force |  9.20e-03 |
| dust1_fluid |  2.16e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017155466308584868 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.0665e+04 | 9216 |      1 | 3.005e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.38269812741881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08192195415135252, dt = 0.0017155466308584868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 343.59 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6385633680555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2944651927360355e-13,-4.476131883975944e-14,1.428662182868182e-13)
    sum a = (-1.6472325963675124e-12,2.238065941995502e-13,-1.3744230219735112e-12)
    sum e = 3.858617566308093e-09
    sum de = -6.0842869368469834e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.74e-03 |
|       force |  8.84e-03 |
| dust1_fluid |  2.16e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017373509096004819 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.1808e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.315709821956926 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08363750078221101, dt = 0.0017373509096004819 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 330.21 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6396484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.265968707628023e-13,-4.437414211118324e-14,1.4048029149390508e-13)
    sum a = (-1.6329843538131662e-12,2.2187071055688476e-13,-1.3719906503584352e-12)
    sum e = 3.847982306942827e-09
    sum de = -6.1566889174668585e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.77e-03 |
|       force |  8.43e-03 |
| dust1_fluid |  2.16e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001766331990110425 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.2897e+04 | 9216 |      1 | 2.802e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.32531619683853 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08537485169181148, dt = 0.001766331990110425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 293.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
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: 1.6407335069444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.237248553578939e-13,-4.3983926432063194e-14,1.38059013459635e-13)
    sum a = (-1.6186242767897273e-12,2.1991963215997673e-13,-1.3693592691202575e-12)
    sum e = 3.837051518735192e-09
    sum de = -6.2222973992986095e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.79e-03 |
|       force |  8.33e-03 |
| dust1_fluid |  2.17e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0017899552856302297 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.0806e+04 | 9216 |      1 | 2.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.255494305765907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0871411836819219, dt = 0.0017899552856302297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 261.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 1.6409505208333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.208402726099274e-13,-4.359200325015712e-14,1.3561024554443112e-13)
    sum a = (-1.6042013630493165e-12,2.179600162507563e-13,-1.3665323873335083e-12)
    sum e = 3.825865071193724e-09
    sum de = -6.280914180064926e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.82e-03 |
|       force |  8.23e-03 |
| dust1_fluid |  2.17e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001823166420624067 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.3092e+04 | 9216 |      1 | 2.785e-01 | 0.0% |   0.8% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.138123679911132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08893113896755213, dt = 0.001823166420624067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 272.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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: 1.6427951388888886
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.179284547382295e-13,-4.3196379679913664e-14,1.3312135957924737e-13)
    sum a = (-1.5896422736910163e-12,2.159818983995895e-13,-1.3634896945456943e-12)
    sum e = 3.814373844201929e-09
    sum de = -6.333169310594864e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.86e-03 |
|       force |  8.19e-03 |
| dust1_fluid |  2.17e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018638710135852926 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.2208e+04 | 9216 |      1 | 2.861e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.937491476928795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09075430538817619, dt = 0.0018638710135852926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.4%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6434461805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1497883840374906e-13,-4.279562049905209e-14,1.3058276432777882e-13)
    sum a = (-1.5748941920181752e-12,2.139781024958587e-13,-1.360211635887284e-12)
    sum e = 3.802537366174719e-09
    sum de = -6.379520503083241e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.88e-03 |
|       force |  8.11e-03 |
| dust1_fluid |  2.18e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018821776517816099 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.3218e+04 | 9216 |      1 | 2.774e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.18521063756883 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09261817640176148, dt = 0.0018821776517816099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 1.71 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        : 265.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6444227430555558
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.120283520125764e-13,-4.239474310511318e-14,1.280256593243103e-13)
    sum a = (-1.560141760062646e-12,2.1197371552481368e-13,-1.3567332128761196e-12)
    sum e = 3.790500927026851e-09
    sum de = -6.419754620779011e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.91e-03 |
|       force |  8.08e-03 |
| dust1_fluid |  2.18e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001907773568618882 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    | 2.8182e+04 | 9216 |      1 | 3.270e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.72027486821373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0945003540535431, dt = 0.001907773568618882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.1%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 320.02 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.6462673611111112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.090658381482983e-13,-4.1992231559577885e-14,1.2544059306609282e-13)
    sum a = (-1.545329190742099e-12,2.0996115779745829e-13,-1.3530377329903613e-12)
    sum e = 3.778230740254326e-09
    sum de = -6.454856713516992e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.94e-03 |
|       force |  8.10e-03 |
| dust1_fluid |  2.19e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019372959543038173 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.0105e+04 | 9216 |      1 | 3.061e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.43498396237439 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09640812762216197, dt = 0.0019372959543038173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.6483289930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.060862076731249e-13,-4.1587394410236093e-14,1.228228836093086e-13)
    sum a = (-1.5304310383645332e-12,2.0793697205171657e-13,-1.3491133628696688e-12)
    sum e = 3.76570772906896e-09
    sum de = -6.485484977304942e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.97e-03 |
|       force |  8.13e-03 |
| dust1_fluid |  2.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019722311092964548 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.8986e+04 | 9216 |      1 | 3.180e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.935047209787 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.09834542357646579, dt = 0.0016545764235342125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 307.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6514756944444442
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.035684236243631e-13,-4.124530752212518e-14,1.205944737797001e-13)
    sum a = (-1.5178421181220507e-12,2.0622653761068955e-13,-1.3456328676368573e-12)
    sum e = 3.754916330617378e-09
    sum de = -6.50714127290546e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.00e-03 |
|       force |  8.21e-03 |
| dust1_fluid |  2.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019950787928491058 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.2975e+04 | 9216 |      1 | 2.795e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.312481759300653 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 56                                                      [SPH][rank=0]
Info: time since start : 29.654246671000003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 1):
   -> t = 0.1 >= 0.1
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.1 -> 0.2

[Simulation] Evolve until next trigger(s) :
   -> t = 0.2 (current = 0.1)
   -> iter = None (current = 55)
   -> walltime = 41.702389174000004 (current = 32.704509342)

Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = 41.70s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.0019950787928491058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.3%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 296.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6551649305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.00550623668928e-13,-4.083528435266763e-14,1.179127095552057e-13)
    sum a = (-1.5027531183442944e-12,2.0417642176212423e-13,-1.3412609219266064e-12)
    sum e = 3.7419719338352835e-09
    sum de = -6.532266304843119e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.99e-03 |
|       force |  8.36e-03 |
| dust1_fluid |  2.21e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019947526420674975 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.3060e+04 | 9216 |      1 | 2.788e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.764589619072567 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.95s (niter = 7) global walltime = 32.98s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.10199507879284911, dt = 0.0019947526420674975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 268.68 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6575520833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.975680547874636e-13,-4.043004796723771e-14,1.1524158697555548e-13)
    sum a = (-1.487840273936743e-12,2.0215023983585257e-13,-1.3367218134273133e-12)
    sum e = 3.728924142525147e-09
    sum de = -6.5529510326282684e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.00e-03 |
|       force |  8.57e-03 |
| dust1_fluid |  2.21e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001995601731945755 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.3294e+04 | 9216 |      1 | 2.768e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.94249341536558 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10398983143491661, dt = 0.001995601731945755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 295.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6614583333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9461379187782705e-13,-4.0028657464381825e-14,1.1257854980889862e-13)
    sum a = (-1.4730689593895884e-12,2.0014328732205926e-13,-1.3320087470104236e-12)
    sum e = 3.7158305930965034e-09
    sum de = -6.571095967542787e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.00e-03 |
|       force |  8.49e-03 |
| dust1_fluid |  2.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0019983634701266173 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.3422e+04 | 9216 |      1 | 2.757e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.05387124316183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10598543316686236, dt = 0.0019983634701266173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.69 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 263.13 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6650390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.916848035108482e-13,-3.963070096915667e-14,1.0992141488876674e-13)
    sum a = (-1.4584240175545435e-12,1.9815350484560837e-13,-1.3271190830997937e-12)
    sum e = 3.7026830767817144e-09
    sum de = -6.587124602033049e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.00e-03 |
|       force |  8.46e-03 |
| dust1_fluid |  2.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002004002315520064 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.3394e+04 | 9216 |      1 | 2.760e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.06793118693122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10798379663698898, dt = 0.002004002315520064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.7%)
   patch tree reduce : 2.41 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 350.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6694878472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8877675136105254e-13,-3.923558904092865e-14,1.0726675083623001e-13)
    sum a = (-1.4438837568054902e-12,1.9617794520545597e-13,-1.3220468439940025e-12)
    sum e = 3.689466535502712e-09
    sum de = -6.601366783234365e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.01e-03 |
|       force |  8.47e-03 |
| dust1_fluid |  2.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020134797203761787 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.3347e+04 | 9216 |      1 | 2.764e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.104821163717634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10998779895250904, dt = 0.0020134797203761787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6724175347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8588409005625217e-13,-3.88425682397209e-14,1.0460991871561286e-13)
    sum a = (-1.4294204502814012e-12,1.9421284119837022e-13,-1.316782363798222e-12)
    sum e = 3.6761590479017314e-09
    sum de = -6.614021382550094e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.03e-03 |
|       force |  8.47e-03 |
| dust1_fluid |  2.21e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020282236341218505 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.3466e+04 | 9216 |      1 | 2.754e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.321875482019227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11200127867288522, dt = 0.0020282236341218505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.2%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 296.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6752387152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8299946650307883e-13,-3.84506395136827e-14,1.0194448956665951e-13)
    sum a = (-1.4149973325152618e-12,1.9225319756958856e-13,-1.3113105996839517e-12)
    sum e = 3.662728941836048e-09
    sum de = -6.625194526910813e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.05e-03 |
|       force |  8.55e-03 |
| dust1_fluid |  2.21e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002049379959596946 cfl multiplier : 0.9999999999880332        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3388e+04 | 9216 |      1 | 2.760e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.452499684989775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11402950230700706, dt = 0.002049379959596946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 318.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6782769097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.801142259811003e-13,-3.805862696118033e-14,9.926266488338896e-14)
    sum a = (-1.4005711299049092e-12,1.902931348057728e-13,-1.3056113913686493e-12)
    sum e = 3.6491366650911826e-09
    sum de = -6.634878216665722e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.08e-03 |
|       force |  8.73e-03 |
| dust1_fluid |  2.22e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020775581145148565 cfl multiplier : 0.999999999992022        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3604e+04 | 9216 |      1 | 2.743e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.901359748454542 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.66s (niter = 6) global walltime = 34.92s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.11607888226660401, dt = 0.0020775581145148565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.68359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.772192404504801e-13,-3.7665290371500634e-14,9.655602126450919e-14)
    sum a = (-1.3860962022524998e-12,1.8832645185726797e-13,-1.2996606101540486e-12)
    sum e = 3.635338536197376e-09
    sum de = -6.642971376606755e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.11e-03 |
|       force |  8.97e-03 |
| dust1_fluid |  2.22e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002113072404167806 cfl multiplier : 0.9999999999946813        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0462e+04 | 9216 |      1 | 3.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.721517653439697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11815644038111887, dt = 0.002113072404167806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 293.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6868489583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.743053550676745e-13,-3.726938589216257e-14,9.381592584147542e-14)
    sum a = (-1.3715267753391158e-12,1.8634692946107627e-13,-1.293430839294695e-12)
    sum e = 3.621288963508336e-09
    sum de = -6.6492866316848465e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.16e-03 |
|       force |  9.11e-03 |
| dust1_fluid |  2.23e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0021564834016009134 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.3134e+04 | 9216 |      1 | 2.781e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.34968603696697 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12026951278528668, dt = 0.0021564834016009134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 319.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6901041666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7136307346878536e-13,-3.6869623268913327e-14,9.103324568387836e-14)
    sum a = (-1.3568153673434636e-12,1.8434811634506765e-13,-1.2868905535667064e-12)
    sum e = 3.606939178514177e-09
    sum de = -6.6535601530752805e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.35e-03 |
|       force |  9.23e-03 |
| dust1_fluid |  2.24e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0022387922380579695 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.9780e+04 | 9216 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.085752874167273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1224259961868876, dt = 0.0022387922380579695 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 295.38 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.6943359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.683413082094736e-13,-3.645906134059048e-14,8.815921711000622e-14)
    sum a = (-1.3417065410469728e-12,1.8229530670248494e-13,-1.2799066684359105e-12)
    sum e = 3.5920392850644485e-09
    sum de = -6.6555384102834244e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.35e-03 |
|       force |  9.40e-03 |
| dust1_fluid |  2.24e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002241890546886165 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.3527e+04 | 9216 |      1 | 2.749e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.320670461165403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12466478842494556, dt = 0.002241890546886165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 296.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.69921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.653502617599268e-13,-3.605267312290222e-14,8.52976241831527e-14)
    sum a = (-1.3267513088000538e-12,1.802633656143173e-13,-1.2727216656816226e-12)
    sum e = 3.5771047674443067e-09
    sum de = -6.654486995121699e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.35e-03 |
|       force |  9.56e-03 |
| dust1_fluid |  2.24e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002244273492103483 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.3360e+04 | 9216 |      1 | 2.763e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.215051775504268 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12690667897183172, dt = 0.002244273492103483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 296.61 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 1.7055121527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.62389432963877e-13,-3.565039052461759e-14,8.24493426808371e-14)
    sum a = (-1.3119471648189856e-12,1.7825195262339492e-13,-1.2653373982673976e-12)
    sum e = 3.562161002157241e-09
    sum de = -6.650403790542232e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.48e-03 |
|       force |  9.74e-03 |
| dust1_fluid |  2.25e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00224818053866982 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.1119e+04 | 9216 |      1 | 2.962e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.28098926799118 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.13s (niter = 4) global walltime = 36.66s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.1291509524639352, dt = 0.00224818053866982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 297.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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: 1.7096354166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5945655115411836e-13,-3.525190503417533e-14,7.961292192487331e-14)
    sum a = (-1.2972827557704033e-12,1.7625952517048988e-13,-1.257751262548525e-12)
    sum e = 3.5472050534058432e-09
    sum de = -6.643107673831253e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.48e-03 |
|       force |  9.84e-03 |
| dust1_fluid |  2.25e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002253594755192387 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.0879e+04 | 9216 |      1 | 2.985e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.11786159705465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13139913300260503, dt = 0.002253594755192387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 316.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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: 1.7135416666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5654948565923274e-13,-3.485692716101096e-14,7.678698777763637e-14)
    sum a = (-1.2827474282964255e-12,1.7428463580553487e-13,-1.249960732743887e-12)
    sum e = 3.532234440094183e-09
    sum de = -6.6324444450887835e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.49e-03 |
|       force |  1.00e-02 |
| dust1_fluid |  2.26e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002260445340365119 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.2008e+04 | 9216 |      1 | 2.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.176716125431458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1336527277577974, dt = 0.002260445340365119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 307.22 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.7194010416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5366628358095265e-13,-3.4465191568265815e-14,7.39702982124181e-14)
    sum a = (-1.268331417904721e-12,1.7232595784175563e-13,-1.2419635232953366e-12)
    sum e = 3.517247490476545e-09
    sum de = -6.618290705836185e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.51e-03 |
|       force |  1.03e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002268151678073357 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.3301e+04 | 9216 |      1 | 2.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.40459840283268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13591317309816253, dt = 0.002268151678073357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 317.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (51.4%)
Warning: High interface/patch volume 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.723198784722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5080580884883596e-13,-3.4076543900054475e-14,7.11623751902103e-14)
    sum a = (-1.2540290442439283e-12,1.7038271950166512e-13,-1.233759483772808e-12)
    sum e = 3.5022466414894714e-09
    sum de = -6.600553142990906e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.54e-03 |
|       force |  1.04e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0022698794785475165 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.2562e+04 | 9216 |      1 | 2.830e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.85011288277168 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.85s (niter = 3) global walltime = 37.80s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.13818132477623588, dt = 0.0022698794785475165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 284.91 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.7294921874999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.479755340322166e-13,-3.3691999441207304e-14,6.837119385962527e-14)
    sum a = (-1.2398776701606356e-12,1.684599972059418e-13,-1.2253743886918553e-12)
    sum e = 3.4872791035417513e-09
    sum de = -6.579228969895822e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.54e-03 |
|       force |  1.05e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002270951465585574 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.3331e+04 | 9216 |      1 | 2.765e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.55360109793573 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14045120425478338, dt = 0.002270951465585574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.54 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 341.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.7402343749999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.451758929768315e-13,-3.331161713760204e-14,6.559794467340379e-14)
    sum a = (-1.225879464884808e-12,1.6655808568804896e-13,-1.2168154045428354e-12)
    sum e = 3.4723578467956164e-09
    sum de = -6.55434460992655e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.54e-03 |
|       force |  1.07e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002272444059165023 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.1739e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.15547108717354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14272215572036895, dt = 0.002272444059165023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.9%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 270.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (8.7%)
Warning: High interface/patch volume 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.750217013888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.424060450919972e-13,-3.293528277964629e-14,6.284251825504174e-14)
    sum a = (-1.212030225460114e-12,1.6467641389843565e-13,-1.2080860574315327e-12)
    sum e = 3.4574882024006147e-09
    sum de = -6.5259314741548e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.54e-03 |
|       force |  1.09e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002274991126229667 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.1574e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.027497268721785 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.57s (niter = 2) global walltime = 38.66s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.14499459977953397, dt = 0.002274991126229667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 302.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.7631293402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.396644228952765e-13,-3.256278339626983e-14,6.010405167124176e-14)
    sum a = (-1.1983221144757442e-12,1.6281391698196435e-13,-1.1991873045673687e-12)
    sum e = 3.4426713120293424e-09
    sum de = -6.494035093967551e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.54e-03 |
|       force |  1.11e-02 |
| dust1_fluid |  2.28e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0022786509974971566 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.3167e+04 | 9216 |      1 | 2.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.47477061872723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14726959090576364, dt = 0.0022786509974971566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.2%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 275.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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: 1.7825520833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.36949457929229e-13,-3.219390588391141e-14,5.738164461513647e-14)
    sum a = (-1.1847472896465957e-12,1.609695294194017e-13,-1.1901196354035384e-12)
    sum e = 3.42790791188455e-09
    sum de = -6.458704415239186e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.55e-03 |
|       force |  1.11e-02 |
| dust1_fluid |  2.28e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002283446447117339 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.3418e+04 | 9216 |      1 | 2.758e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.745713488507448 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.57s (niter = 2) global walltime = 39.22s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.1495482419032608, dt = 0.002283446447117339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 320.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.803276909722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3425961708401956e-13,-3.182844194164511e-14,5.467440118874019e-14)
    sum a = (-1.1712980854191847e-12,1.5914220970897042e-13,-1.1808831467835913e-12)
    sum e = 3.4131986453158898e-09
    sum de = -6.4200012071889425e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.56e-03 |
|       force |  1.11e-02 |
| dust1_fluid |  2.29e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002289362513269911 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.3460e+04 | 9216 |      1 | 2.754e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.845112915233358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15183168835037814, dt = 0.002289362513269911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 294.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8250868055555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3159344642420504e-13,-3.1466194025802165e-14,5.198147709331863e-14)
    sum a = (-1.1579672321218548e-12,1.5733097012894767e-13,-1.1714776909353508e-12)
    sum e = 3.3985442952953195e-09
    sum de = -6.377993082235247e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.56e-03 |
|       force |  1.12e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002296344157319258 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.3308e+04 | 9216 |      1 | 2.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.78664444969816 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.28s (niter = 1) global walltime = 39.77s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.15412105086364805, dt = 0.002296344157319258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 290.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (61.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8385416666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.289496147142618e-13,-3.1106981263786914e-14,4.9302127391617574e-14)
    sum a = (-1.1447480735710213e-12,1.5553490631900195e-13,-1.161903010121141e-12)
    sum e = 3.3839460423173645e-09
    sum de = -6.332751355863022e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.56e-03 |
|       force |  1.12e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023019241615179053 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    | 2.8322e+04 | 9216 |      1 | 3.254e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.40539915399058 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.28s (niter = 1) global walltime = 40.10s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.1564173950209673, dt = 0.0023019241615179053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 324.51 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.848958333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2632966933359992e-13,-3.0751013895287085e-14,4.6638508160290396e-14)
    sum a = (-1.1316483466686129e-12,1.5375506947656692e-13,-1.1521691308392404e-12)
    sum e = 3.3694204983094962e-09
    sum de = -6.284405982915328e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.56e-03 |
|       force |  1.14e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002305819068422967 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.3585e+04 | 9216 |      1 | 2.744e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.199394439280265 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.28s (niter = 1) global walltime = 40.37s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.1587193191824852, dt = 0.002305819068422967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (0.5%)
   patch tree reduce : 1.92 us    (0.2%)
   gen split merge   : 1.23 us    (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.1%)
   LB compute        : 1.15 ms    (98.0%)
   LB move op cnt    : 0
   LB apply          : 5.79 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 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: 1.8631727430555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2373537028603882e-13,-3.039853104893848e-14,4.399301793420704e-14)
    sum a = (-1.1186768514305835e-12,1.5199265524468118e-13,-1.1422875414635698e-12)
    sum e = 3.3549856493534745e-09
    sum de = -6.233115594979175e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.56e-03 |
|       force |  1.14e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002310485867751973 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.3257e+04 | 9216 |      1 | 2.771e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.955096762679805 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 40.65s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.16102513825090817, dt = 0.002310485867751973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 326.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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: 1.874457465277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2116563819076353e-13,-3.0049386071163236e-14,4.136517129158879e-14)
    sum a = (-1.1058281909540079e-12,1.5024693035557871e-13,-1.1322592552322533e-12)
    sum e = 3.3406437640183193e-09
    sum de = -6.178992286089508e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.13e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023139347840772763 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.8438e+04 | 9216 |      1 | 3.241e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.66618930344296 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 40.97s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.16333562411866015, dt = 0.0023139347840772763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 326.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 1.884765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.186216671987254e-13,-2.970374120915665e-14,3.875678232327544e-14)
    sum a = (-1.0931083359941205e-12,1.4851870604632451e-13,-1.1220941138140922e-12)
    sum e = 3.3264090492651414e-09
    sum de = -6.122189203451503e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.60e-03 |
|       force |  1.12e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023170320874731486 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.0404e+04 | 9216 |      1 | 3.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.481669669856068 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.28s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.16564955890273741, dt = 0.0023170320874731486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 289.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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: 1.896050347222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.161036165665617e-13,-2.9361618100825744e-14,3.616861499335061e-14)
    sum a = (-1.0805180828321815e-12,1.4680809050340757e-13,-1.1117981171829371e-12)
    sum e = 3.3122899939072882e-09
    sum de = -6.06284558452551e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.63e-03 |
|       force |  1.11e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002320316959608563 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.3168e+04 | 9216 |      1 | 2.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.019902053178303 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 41.56s (max_walltime = 41.70s)  [SPH][rank=0]
---------------- t = 0.16796659099021055, dt = 0.002320316959608563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.28 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 1.9066840277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.136110581440894e-13,-2.902295857417824e-14,3.3600819043814074e-14)
    sum a = (-1.0680552907204192e-12,1.4511479287072947e-13,-1.1013748410953546e-12)
    sum e = 3.2982914772020903e-09
    sum de = -6.001078545195996e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.67e-03 |
|       force |  1.12e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023224226200718625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8718e+04 | 9216 |      1 | 3.209e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.029646885712932 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 41.88s > 41.70s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 1):
   -> walltime = 41.877468049 >= 41.702389174000004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000001.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (52.7%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000001.sham              [Shamrock Dump][rank=0]
              - took 1.40 ms, bandwidth = 2.49 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 41.877468049 -> 71.877468049

[Simulation] Evolve until next trigger(s) :
   -> t = 0.2 (current = 0.17028690794981913)
   -> iter = None (current = 87)
   -> walltime = 71.877468049 (current = 41.881029196)

Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = 71.88s)       [SPH][rank=0]
---------------- t = 0.17028690794981913, dt = 0.0023224226200718625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (0.9%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.28 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.921332465277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1114504119138085e-13,-2.868790519031485e-14,3.105505385194122e-14)
    sum a = (-1.0557252059565866e-12,1.4343952595191282e-13,-1.0908340906810188e-12)
    sum e = 3.2844262790160136e-09
    sum de = -5.9370327567702344e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.71e-03 |
|       force |  1.13e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002322644715998795 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3468e+04 | 9216 |      1 | 2.754e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.361761978728648 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.17s (niter = 26) global walltime = 42.16s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.172609330569891, dt = 0.002322644715998795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.2%)
   patch tree reduce : 2.02 us    (0.4%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 442.85 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.9376085069444442
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.087072844541018e-13,-2.8356691472187782e-14,2.853367385351804e-14)
    sum a = (-1.0435364222702044e-12,1.41783457362452e-13,-1.0801890058352345e-12)
    sum e = 3.2707108251839083e-09
    sum de = -5.870866751889339e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.77e-03 |
|       force |  1.14e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00232323515537409 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2918e+04 | 9216 |      1 | 2.800e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.865998523393813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1749319752858898, dt = 0.00232323515537409 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 260.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.7%)
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: 1.9574652777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0629705905898066e-13,-2.8029218389075242e-14,2.603650315587775e-14)
    sum a = (-1.0314852952948616e-12,1.4014609194601953e-13,-1.0694422887679052e-12)
    sum e = 3.2571478136036484e-09
    sum de = -5.802669044358396e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.82e-03 |
|       force |  1.14e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002325081024319423 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2421e+04 | 9216 |      1 | 2.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.42237662552563 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17725521044126388, dt = 0.002325081024319423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 269.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.9819878472222225
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0391277097295398e-13,-2.7705269362505153e-14,2.3562446759063064e-14)
    sum a = (-1.0195638548657897e-12,1.385263468127544e-13,-1.0585923465126178e-12)
    sum e = 3.243734749027939e-09
    sum de = -5.7324871096037094e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.89e-03 |
|       force |  1.15e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002328169374794142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3312e+04 | 9216 |      1 | 2.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.25554667518102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1795802914655833, dt = 0.002328169374794142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 263.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0072699652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0155291278786774e-13,-2.7384639583591558e-14,2.111047797477369e-14)
    sum a = (-1.0077645639390606e-12,1.369231979187155e-13,-1.0476373479462784e-12)
    sum e = 3.230469397975096e-09
    sum de = -5.660352393103146e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.88e-03 |
|       force |  1.17e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002332436623976593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.016e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.79340128854902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18190846084037743, dt = 0.002332436623976593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 266.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0281032986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.992161011844832e-13,-2.706714110317036e-14,1.8679682802023368e-14)
    sum a = (-9.960805059230777e-13,1.3533570551656358e-13,-1.0365754569430853e-12)
    sum e = 3.217350131577293e-09
    sum de = -5.58628694916264e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.84e-03 |
|       force |  1.20e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023345593701453705 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2966e+04 | 9216 |      1 | 2.796e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.03585662709403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18424089746435401, dt = 0.0023345593701453705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 262.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.044921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9690431826837633e-13,-2.6753043226453997e-14,1.62726364359625e-14)
    sum a = (-9.845215913417984e-13,1.3376521613168815e-13,-1.0254206823211703e-12)
    sum e = 3.2043939058988205e-09
    sum de = -5.510411028379125e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.84e-03 |
|       force |  1.21e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023363546424493287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.993609832220557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1865754568344994, dt = 0.0023363546424493287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 293.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.063693576388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.946176191640254e-13,-2.6442353443098338e-14,1.3889910806176893e-14)
    sum a = (-9.730880958195295e-13,1.322117672155864e-13,-1.0141781446558688e-12)
    sum e = 3.191607079099165e-09
    sum de = -5.43279287630068e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.81e-03 |
|       force |  1.23e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023391899527277393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2333e+04 | 9216 |      1 | 2.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.50836643852405 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18891181147694872, dt = 0.0023391899527277393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.3%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 286.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.0899522569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9235473761733473e-13,-2.6134899709390732e-14,1.1530688757375332e-14)
    sum a = (-9.617736880867267e-13,1.3067449854678203e-13,-1.0028463048407292e-12)
    sum e = 3.178988426328673e-09
    sum de = -5.3534548425946195e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.77e-03 |
|       force |  1.27e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023430664465286135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.120e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.99236757558773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19125100142967646, dt = 0.0023430664465286135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.4%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 265.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1239149305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.901144712340706e-13,-2.5830518658140605e-14,9.194206892510811e-15)
    sum a = (-9.505723561701843e-13,1.291525932899009e-13,-9.914235083913226e-13)
    sum e = 3.1665369149300264e-09
    sum de = -5.272416969170062e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.74e-03 |
|       force |  1.29e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347945032153218 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.330793261402157 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1935940678762051, dt = 0.002347945032153218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 265.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.6%)
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: 2.1553819444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8789570232518267e-13,-2.552905843090465e-14,6.879781176809361e-15)
    sum a = (-9.394785116252334e-13,1.276452921544072e-13,-9.79908160121981e-13)
    sum e = 3.154251931782703e-09
    sum de = -5.189700734814253e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.71e-03 |
|       force |  1.32e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023537445946000394 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3274e+04 | 9216 |      1 | 2.770e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.5178825744468 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.1959420129083583, dt = 0.0023537445946000394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.50 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.1756727430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8569743372529763e-13,-2.5230383544578284e-14,4.586846343958207e-15)
    sum a = (-9.284871686266824e-13,1.2615191772334385e-13,-9.68298980620212e-13)
    sum e = 3.142133469535214e-09
    sum de = -5.105334288232466e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.83e-03 |
|       force |  1.30e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023599500243658943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2143e+04 | 9216 |      1 | 2.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.55307624552191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19829575750295833, dt = 0.0017042424970416803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.198025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8412800184165064e-13,-2.5017147596312198e-14,2.9502925931365887e-15)
    sum a = (-9.206400092074663e-13,1.2508573798147812e-13,-9.598875198539085e-13)
    sum e = 3.1334929207957125e-09
    sum de = -5.042851340456179e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.81e-03 |
|       force |  1.28e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023611504696202093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3167e+04 | 9216 |      1 | 2.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.079793916373873 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 101                                                     [SPH][rank=0]
Info: time since start : 45.631052137000005 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 2):
   -> t = 0.2 >= 0.2
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.2 -> 0.30000000000000004

[Simulation] Evolve until next trigger(s) :
   -> t = 0.30000000000000004 (current = 0.2)
   -> iter = None (current = 100)
   -> walltime = 71.877468049 (current = 48.675464053000006)

Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = 71.88s)       [SPH][rank=0]
---------------- t = 0.2, dt = 0.0023611504696202093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 293.72 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.819609189828413e-13,-2.4722709861746376e-14,6.910213092942788e-16)
    sum a = (-9.098045949145787e-13,1.2361354930794977e-13,-9.481041323478691e-13)
    sum e = 3.1216777414117866e-09
    sum de = -4.956440640489259e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.78e-03 |
|       force |  1.25e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002362705697421674 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2599e+04 | 9216 |      1 | 2.827e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.067156990739605 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.66s (niter = 20) global walltime = 48.96s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.20236115046962022, dt = 0.002362705697421674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 287.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 2.2337239583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7982411050466703e-13,-2.4432385454005723e-14,-1.53515855046044e-15)
    sum a = (-8.991205525236483e-13,1.221619272697096e-13,-9.362911281277004e-13)
    sum e = 3.1100689545689907e-09
    sum de = -4.86817683688933e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.75e-03 |
|       force |  1.24e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363761295130465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2982e+04 | 9216 |      1 | 2.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.439689138514613 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2047238561670419, dt = 0.002363761295130465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 331.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.258246527777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.777114257668683e-13,-2.41453386964182e-14,-3.734371953898615e-15)
    sum a = (-8.88557128834098e-13,1.2072669348129758e-13,-9.244210301435217e-13)
    sum e = 3.0986657612822405e-09
    sum de = -4.778719384274427e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.72e-03 |
|       force |  1.24e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002365580782575067 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2653e+04 | 9216 |      1 | 2.822e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.14993864499859 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20708761746217236, dt = 0.002365580782575067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.287109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7562195680471152e-13,-2.3861446225412293e-14,-5.907135538639854e-15)
    sum a = (-8.781097840233472e-13,1.1930723112586148e-13,-9.124940574822331e-13)
    sum e = 3.087466833755795e-09
    sum de = -4.6881139921448666e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.70e-03 |
|       force |  1.26e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002367512759671208 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.3025e+04 | 9216 |      1 | 2.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.51697751893943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20945319824474742, dt = 0.002367512759671208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.320638020833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7355537770569872e-13,-2.3580663759836876e-14,-8.05336975424171e-15)
    sum a = (-8.67776888528862e-13,1.1790331879870047e-13,-9.005136575837459e-13)
    sum e = 3.0764745645492976e-09
    sum de = -4.5964319989979756e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.68e-03 |
|       force |  1.28e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002369690293195554 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2861e+04 | 9216 |      1 | 2.805e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.389944547533307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21182071100441863, dt = 0.002369690293195554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 318.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 6.60 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.362630208333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.715112468672582e-13,-2.3302931299919383e-14,-1.0173126352862637e-14)
    sum a = (-8.575562343357079e-13,1.165146564992216e-13,-8.884826103523743e-13)
    sum e = 3.0656906143109233e-09
    sum de = -4.503736770891675e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.66e-03 |
|       force |  1.31e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002370869370373157 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2142e+04 | 9216 |      1 | 2.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.75299434913582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21419040129761419, dt = 0.002370869370373157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 297.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.404188368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.694902029504141e-13,-2.3028335619408768e-14,-1.2265347631848881e-14)
    sum a = (-8.474510147523624e-13,1.151416780967816e-13,-8.764101658830847e-13)
    sum e = 3.0551221150932358e-09
    sum de = -4.410134207232653e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.64e-03 |
|       force |  1.33e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023729993326943354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2491e+04 | 9216 |      1 | 2.836e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.09101090930943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21656127066798733, dt = 0.0023729993326943354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 321.16 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.4447699652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6749118133571435e-13,-2.2756732070342336e-14,-1.4330757276182027e-14)
    sum a = (-8.374559066788134e-13,1.1378366035146673e-13,-8.642955285714346e-13)
    sum e = 3.0447671975075443e-09
    sum de = -4.315650176136482e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.63e-03 |
|       force |  1.32e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023760643091068397 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2807e+04 | 9216 |      1 | 2.809e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.410567328749462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21893427000068166, dt = 0.0023760643091068397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 310.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.485677083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6551319143779474e-13,-2.248798606362226e-14,-1.6370005021081118e-14)
    sum a = (-8.275659571886799e-13,1.1243993031889277e-13,-8.521380453589243e-13)
    sum e = 3.0346243335391994e-09
    sum de = -4.220304902608009e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.62e-03 |
|       force |  1.32e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002380022213433569 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9430e+04 | 9216 |      1 | 3.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.315196031169528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2213103343097885, dt = 0.002380022213433569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.7%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 343.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.518663194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6355531565460496e-13,-2.2221972926271006e-14,-1.838366901697634e-14)
    sum a = (-8.177765782724111e-13,1.1110986463124855e-13,-8.399372454057484e-13)
    sum e = 3.024692435083023e-09
    sum de = -4.12411451570299e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.61e-03 |
|       force |  1.32e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002382753539534759 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2554e+04 | 9216 |      1 | 2.831e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.265057716003202 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22369035652322206, dt = 0.002382753539534759 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 297.17 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.5667317708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.616184050878199e-13,-2.1958808295985855e-14,-2.0370513373985436e-14)
    sum a = (-8.080920254391187e-13,1.0979404147996844e-13,-8.277035870079586e-13)
    sum e = 3.014979263333981e-09
    sum de = -4.027176475124585e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.60e-03 |
|       force |  1.34e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00238450963666213 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89928106982435 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22607311006275682, dt = 0.00238450963666213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 263.73 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.598198784722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.597030398171197e-13,-2.1698570987161425e-14,-2.23296056569919e-14)
    sum a = (-7.985151990863218e-13,1.0849285493643389e-13,-8.154459791936557e-13)
    sum e = 3.005490950495251e-09
    sum de = -3.929579785911199e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.37e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002387230760137921 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.030e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.327068484751223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22845761969941894, dt = 0.002387230760137921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.4%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 255.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.629014756944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5780821778878512e-13,-2.1441124852530665e-14,-2.4261649189858176e-14)
    sum a = (-7.890410889443528e-13,1.0720562426261933e-13,-8.031631229712102e-13)
    sum e = 2.9962256386191544e-09
    sum de = -3.83133567542416e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.39e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023895903621579174 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9300e+04 | 9216 |      1 | 3.145e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.32241470458905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23084485045955686, dt = 0.0023895903621579174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
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: 2.6558159722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5593404125087384e-13,-2.11864837843545e-14,-2.6166219041526897e-14)
    sum a = (-7.796702062547281e-13,1.059324189222813e-13,-7.908606196714357e-13)
    sum e = 2.9871867907861635e-09
    sum de = -3.732509778096668e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.39e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002389455188935581 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2348e+04 | 9216 |      1 | 2.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.19485119357185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23323444082171477, dt = 0.002389455188935581 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.57 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.6878255208333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.540822505163632e-13,-2.093488423588897e-14,-2.80412460813574e-14)
    sum a = (-7.704112525812533e-13,1.0467442117900904e-13,-7.785549143615933e-13)
    sum e = 2.9783853878297895e-09
    sum de = -3.6332614712517675e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.39e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023900228488901265 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2232e+04 | 9216 |      1 | 2.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.08427865433288 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23562389601065034, dt = 0.0023900228488901265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 325.13 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.720811631944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5225201194710043e-13,-2.0686212942195685e-14,-2.988730815003565e-14)
    sum a = (-7.612600597346677e-13,1.0343106470995152e-13,-7.662453760337123e-13)
    sum e = 2.969819748873315e-09
    sum de = -3.5336234218537953e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.41e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002391327597755212 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.53244327209442 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23801391885954046, dt = 0.002391327597755212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 294.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 2.7645399305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5044252553718836e-13,-2.0440361207874252e-14,-3.170494182549157e-14)
    sum a = (-7.522126276853988e-13,1.0220180603945204e-13,-7.53931107174248e-13)
    sum e = 2.961488306045721e-09
    sum de = -3.4336299603404507e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.44e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002393382137607143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2105e+04 | 9216 |      1 | 2.871e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.989476457893648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24040524645729566, dt = 0.002393382137607143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 328.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.8051215277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4865301095737637e-13,-2.0197223010960408e-14,-3.349466334494787e-14)
    sum a = (-7.432650547867789e-13,1.0098611505455919e-13,-7.416108162785061e-13)
    sum e = 2.9533895728670343e-09
    sum de = -3.333316184036158e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.48e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023961758524016757 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2127e+04 | 9216 |      1 | 2.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.036427682739557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2427986285949028, dt = 0.0023961758524016757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.837239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.468827246617371e-13,-1.995669732718467e-14,-3.525694969270676e-14)
    sum a = (-7.344136233087589e-13,9.978348663548906e-14,-7.292829540837632e-13)
    sum e = 2.945522223534257e-09
    sum de = -3.2327206858691315e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.52e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002399672629608011 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2469e+04 | 9216 |      1 | 2.838e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.390815606207166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2451948044473045, dt = 0.002399672629608011 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 284.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.869140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4513097718425787e-13,-1.971869048000343e-14,-3.6992220174073575e-14)
    sum a = (-7.256548859213189e-13,9.859345240040547e-14,-7.169458474884873e-13)
    sum e = 2.9378851725843776e-09
    sum de = -3.131884504979072e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.54e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002402125112656639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2345e+04 | 9216 |      1 | 2.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.319429553461802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2475944770769125, dt = 0.002402125112656639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 310.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.9026692708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4339837241085077e-13,-1.9483284518343046e-14,-3.869961129008669e-14)
    sum a = (-7.169918620543184e-13,9.741642259193596e-14,-7.046066061061618e-13)
    sum e = 2.9304828183289166e-09
    sum de = -3.030920972901209e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.54e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024036872338083636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.270127019833474 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.04s (niter = 14) global walltime = 54.73s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.24999660218956915, dt = 0.0024036872338083636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 310.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 2.948025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4168535305887941e-13,-1.9250539593425653e-14,-4.0378444993323034e-14)
    sum a = (-7.08426765294036e-13,9.625269796755675e-14,-6.922710301678634e-13)
    sum e = 2.92331843740043e-09
    sum de = -2.929936576740875e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.54e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024057620903513476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9360e+04 | 9216 |      1 | 3.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.56722734451257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2524002894233775, dt = 0.0024057620903513476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 308.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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: 2.981662326388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3999134071001422e-13,-1.90203771165703e-14,-4.202905896083624e-14)
    sum a = (-6.99956703550598e-13,9.510188558329818e-14,-6.799372941874949e-13)
    sum e = 2.9163907671107425e-09
    sum de = -2.8289767961526536e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.54e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024073188092493094 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1448e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.55327624016177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.25480605151372887, dt = 0.0024073188092493094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 330.51 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.012478298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3831651024862065e-13,-1.879282084901181e-14,-4.365104878101701e-14)
    sum a = (-6.915825512425362e-13,9.396410424573665e-14,-6.676087112249936e-13)
    sum e = 2.9097015275274215e-09
    sum de = -2.7281269036313655e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.58e-03 |
|       force |  1.54e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024080632762692837 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4478e+04 | 9216 |      1 | 3.765e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.01819276964443 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2572133703229782, dt = 0.0024080632762692837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 333.96 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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.0419921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.366612153316449e-13,-1.8567918841499965e-14,-4.5243853386550425e-14)
    sum a = (-6.833060766578513e-13,9.283959420736004e-14,-6.552897687977494e-13)
    sum e = 2.903252825322041e-09
    sum de = -2.627480345113173e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.53e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024093830528717224 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8253e+04 | 9216 |      1 | 3.262e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.575769369564846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2596214335992475, dt = 0.0024093830528717224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.16 us   (8.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 260.80 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.080729166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3502483438787187e-13,-1.834558664224335e-14,-4.680786505377285e-14)
    sum a = (-6.751241719383739e-13,9.172793321207535e-14,-6.429775183464552e-13)
    sum e = 2.897042728814037e-09
    sum de = -2.527068956068063e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.59e-03 |
|       force |  1.52e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024112609562084194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2191e+04 | 9216 |      1 | 2.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.297478733679824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26203081665211925, dt = 0.0024112609562084194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1274956597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3340679050277106e-13,-1.8125745866876822e-14,-4.8343419175645846e-14)
    sum a = (-6.670339525142211e-13,9.062872933432643e-14,-6.306689256486476e-13)
    sum e = 2.891069523096093e-09
    sum de = -2.4269210343297896e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.60e-03 |
|       force |  1.51e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00241334522663915 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2061e+04 | 9216 |      1 | 2.875e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.198029159569792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26444207760832766, dt = 0.00241334522663915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 267.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1750217013888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.318067611125791e-13,-1.790835268924005e-14,-4.9850601402559724e-14)
    sum a = (-6.590338055632416e-13,8.954176344647916e-14,-6.183625492603544e-13)
    sum e = 2.8853324420267973e-09
    sum de = -2.3270762055288163e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.61e-03 |
|       force |  1.51e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024134052282122464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8752e+04 | 9216 |      1 | 3.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.105143073848595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2668554228349668, dt = 0.0024134052282122464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 293.56 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2138671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3022589903889128e-13,-1.769356374116131e-14,-5.1328111044450084e-14)
    sum a = (-6.511294951934595e-13,8.846781870500128e-14,-6.060682888208154e-13)
    sum e = 2.8798357597255104e-09
    sum de = -2.2276638110680783e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.62e-03 |
|       force |  1.53e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024127056121219775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7514e+04 | 9216 |      1 | 3.350e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.938080200041863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2692688280631791, dt = 0.0024127056121219775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 280.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.2445746527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.286644534036041e-13,-1.748141287040556e-14,-5.277553989002727e-14)
    sum a = (-6.433222670183253e-13,8.740706435238262e-14,-5.937892457428415e-13)
    sum e = 2.8745799798528997e-09
    sum de = -2.1287602233554546e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.63e-03 |
|       force |  1.56e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002412515470328596 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1940e+04 | 9216 |      1 | 2.885e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.10273509771916 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.27168153367530107, dt = 0.002412515470328596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 300.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2736545138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2712184675363015e-13,-1.7271821619432054e-14,-5.4193252773421505e-14)
    sum a = (-6.356092337685056e-13,8.635910809704768e-14,-5.815220464521217e-13)
    sum e = 2.869562613943028e-09
    sum de = -2.0303886369120626e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.68e-03 |
|       force |  1.61e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002413085769719081 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.15919142598731 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2740940491456297, dt = 0.002413085769719081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.6%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 324.31 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.300672743055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2559737106254472e-13,-1.706469378993641e-14,-5.558171794444411e-14)
    sum a = (-6.279868553121029e-13,8.532346894998009e-14,-5.692621259779945e-13)
    sum e = 2.8647808353914262e-09
    sum de = -1.9325620355034464e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.68e-03 |
|       force |  1.63e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024143851356768875 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.811193361337608 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2765071349153488, dt = 0.0024143851356768875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 331.08 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.324869791666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2409036566017046e-13,-1.685993961782103e-14,-5.6941343839928e-14)
    sum a = (-6.204518283010779e-13,8.429969808898128e-14,-5.570051853134936e-13)
    sum e = 2.8602320675343624e-09
    sum de = -1.8352966878728414e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.69e-03 |
|       force |  1.63e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002416358755992886 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94059404754104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.27892152005102566, dt = 0.002416358755992886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 266.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.350260416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2260022768078885e-13,-1.6657477192792656e-14,-5.827247170886904e-14)
    sum a = (-6.130011384041052e-13,8.32873859642252e-14,-5.447473373157187e-13)
    sum e = 2.855913992335138e-09
    sum de = -1.7386128454685302e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.70e-03 |
|       force |  1.64e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024184606479669465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1913e+04 | 9216 |      1 | 2.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.122506675545793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28133787880701855, dt = 0.0024184606479669465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.373155381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2112671032028387e-13,-1.645727298199966e-14,-5.95751120280919e-14)
    sum a = (-6.056335516002841e-13,8.228636491051321e-14,-5.324876588890271e-13)
    sum e = 2.8518253464345834e-09
    sum de = -1.6425540563853638e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.71e-03 |
|       force |  1.66e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024191099866234245 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1902e+04 | 9216 |      1 | 2.889e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.138091108596818 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.95s (niter = 10) global walltime = 59.01s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.2837563394549855, dt = 0.0024191099866234245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 291.52 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.3978949652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1967052525675124e-13,-1.6259423679895076e-14,-6.084843346653953e-14)
    sum a = (-5.983526262834754e-13,8.129711839988352e-14,-5.202335922560013e-13)
    sum e = 2.8479672856825703e-09
    sum de = -1.5472272100721544e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.72e-03 |
|       force |  1.70e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002420298367484913 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1805e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.054997419362476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28617544944160894, dt = 0.002420298367484913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 286.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4270833333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1823114005175159e-13,-1.6063856945006736e-14,-6.209273201307883e-14)
    sum a = (-5.911557002586339e-13,8.03192847248976e-14,-5.079825502452159e-13)
    sum e = 2.8443372092257584e-09
    sum de = -1.4526610454326999e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.73e-03 |
|       force |  1.74e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002421990206939926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1642e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.915649514437696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.28859574780909386, dt = 0.002421990206939926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 268.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.462348090277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1680807608910158e-13,-1.5870507748596965e-14,-6.330823518660427e-14)
    sum a = (-5.840403804448323e-13,7.935253874307558e-14,-4.957325273193949e-13)
    sum e = 2.840932736108048e-09
    sum de = -1.3588868774883442e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.82e-03 |
|       force |  1.72e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00242300974858186 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1778e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.065256252170638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2910177380160338, dt = 0.00242300974858186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 334.11 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4998914930555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1540155717117475e-13,-1.5679406498299148e-14,-6.449456521524008e-14)
    sum a = (-5.770077858557863e-13,7.839703249132008e-14,-4.834876167025614e-13)
    sum e = 2.8377530918858597e-09
    sum de = -1.2659797124172328e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.84e-03 |
|       force |  1.71e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024233466664770886 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8362e+04 | 9216 |      1 | 3.249e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.844350766380682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.29344074776461565, dt = 0.0024233466664770886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.5%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 262.25 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.535047743055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.14011787299412e-13,-1.549058091143204e-14,-6.565138855055006e-14)
    sum a = (-5.700589364963291e-13,7.745290455716777e-14,-4.712523301248857e-13)
    sum e = 2.8347970868529556e-09
    sum de = -1.1740129386249562e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.86e-03 |
|       force |  1.71e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002424050720956412 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7751e+04 | 9216 |      1 | 3.321e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.26940858479043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.29586409443109274, dt = 0.002424050720956412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 281.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5732421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1263835525887663e-13,-1.530397511694132e-14,-6.677890293067418e-14)
    sum a = (-5.631917762936447e-13,7.651987558501854e-14,-4.590262577760619e-13)
    sum e = 2.8320619760580464e-09
    sum de = -1.0830173175918172e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.88e-03 |
|       force |  1.72e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002425112666949107 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80861711789292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.29828814515204916, dt = 0.0017118548479508888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 295.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.6107855902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1168257585862276e-13,-1.5174115051733407e-14,-6.754987094564404e-14)
    sum a = (-5.584128792930152e-13,7.58705752589402e-14,-4.50438318267344e-13)
    sum e = 2.830291371759353e-09
    sum de = -1.019431281785118e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.90e-03 |
|       force |  1.72e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024260687338968534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1789e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.257144959248215 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 143                                                     [SPH][rank=0]
Info: time since start : 61.123841949 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 3):
   -> t = 0.30000000000000004 >= 0.30000000000000004
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.30000000000000004 -> 0.4

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4 (current = 0.30000000000000004)
   -> iter = None (current = 142)
   -> walltime = 71.877468049 (current = 63.97949924300001)

Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = 71.88s)       [SPH][rank=0]
---------------- t = 0.30000000000000004, dt = 0.0024260687338968534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 302.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.5%)
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.632595486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1033191822056325e-13,-1.4990603575229294e-14,-6.86353146131988e-14)
    sum a = (-5.516595911026191e-13,7.495301787653451e-14,-4.381906401963217e-13)
    sum e = 2.82789828991472e-09
    sum de = -9.301062380957266e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.92e-03 |
|       force |  1.73e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024277032019193183 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0958e+04 | 9216 |      1 | 2.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.338076889088462 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.79s (niter = 6) global walltime = 64.28s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.3024260687338969, dt = 0.0024277032019193183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 272.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.6562500000000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0900084443553927e-13,-1.48097529223749e-14,-6.968425457902868e-14)
    sum a = (-5.450042221777337e-13,7.404876461233565e-14,-4.2599183765948605e-13)
    sum e = 2.8257477711313158e-09
    sum de = -8.418767710481817e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.95e-03 |
|       force |  1.77e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024284924565091295 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.803635975602123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3048537719358162, dt = 0.0024284924565091295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 319.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.6788194444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0768538442343884e-13,-1.4631023685373482e-14,-7.070396500732932e-14)
    sum a = (-5.38426922117123e-13,7.315511842690784e-14,-4.138112295930646e-13)
    sum e = 2.8238094552526844e-09
    sum de = -7.547553784393754e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.98e-03 |
|       force |  1.77e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024277161025735685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1491e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.873469010908313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3072822643923253, dt = 0.0024277161025735685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 290.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.7036675347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0638622317634582e-13,-1.4454508932891896e-14,-7.169379093544264e-14)
    sum a = (-5.319311158812657e-13,7.227254466421469e-14,-4.016606189131098e-13)
    sum e = 2.8220818667826505e-09
    sum de = -6.688275893038434e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.00e-03 |
|       force |  1.73e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024272840909777063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8049e+04 | 9216 |      1 | 3.286e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.59934170576546 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3097099804948989, dt = 0.0024272840909777063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 321.09 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (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.7292751736111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.051029602279695e-13,-1.4280154254283037e-14,-7.265398624909304e-14)
    sum a = (-5.255148011393592e-13,7.140077127092515e-14,-3.895420323744353e-13)
    sum e = 2.8205616632944742e-09
    sum de = -5.841057648449105e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.03e-03 |
|       force |  1.72e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024271950129542853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1419e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.790624457552028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3121372645858766, dt = 0.0024271950129542853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 297.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.7590060763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0383522043275771e-13,-1.4107908679176008e-14,-7.358477310125251e-14)
    sum a = (-5.191761021633383e-13,7.053954339658867e-14,-3.7745828746375027e-13)
    sum e = 2.8192456644008923e-09
    sum de = -5.006014457154614e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.06e-03 |
|       force |  1.71e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024274381745683477 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.77989123679499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3145644595988309, dt = 0.0024274381745683477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 295.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (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.7861328124999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0258264517231544e-13,-1.3937723482719124e-14,-7.448636495485779e-14)
    sum a = (-5.129132258617405e-13,6.968861741361277e-14,-3.6541256927941096e-13)
    sum e = 2.8181307571976036e-09
    sum de = -4.183245355839581e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.10e-03 |
|       force |  1.73e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024279944686245586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.701e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.61280780411542 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.24s (niter = 4) global walltime = 66.15s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.31699189777339926, dt = 0.0024279944686245586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 258.63 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
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.8127170138888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0134489606954919e-13,-1.3769552690219642e-14,-7.535896453375429e-14)
    sum a = (-5.06724480347832e-13,6.884776345115041e-14,-3.5340840978361475e-13)
    sum e = 2.817213885776435e-09
    sum de = -3.3728630934938717e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.13e-03 |
|       force |  1.76e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024288374616224778 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9180e+04 | 9216 |      1 | 3.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.675465192227136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.31941989224202383, dt = 0.0024288374616224778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.5%)
   LB compute        : 315.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.841145833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0012165778889794e-13,-1.3603353457584187e-14,-7.620276310225381e-14)
    sum a = (-5.006082889443739e-13,6.801676728753e-14,-3.414497199966534e-13)
    sum e = 2.816492046630167e-09
    sum de = -2.57498962590352e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.16e-03 |
|       force |  1.81e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024299346478729752 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9152e+04 | 9216 |      1 | 3.161e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.658351000329127 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3218487297036463, dt = 0.0024299346478729752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.06 us   (3.0%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 304.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.8627387152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.891263997997813e-14,-1.3439086335423442e-14,-7.70179407505105e-14)
    sum a = (-4.945631998997649e-13,6.719543167647263e-14,-3.295407231194196e-13)
    sum e = 2.8159622731507353e-09
    sum de = -1.789759035719824e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.20e-03 |
|       force |  1.81e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002431248485538837 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1166e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.582603774654785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3242786643515193, dt = 0.002431248485538837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 289.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.890516493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.771757853487927e-14,-1.3276715439854917e-14,-7.780466709244866e-14)
    sum a = (-4.885878926738846e-13,6.63835771984246e-14,-3.176858333526856e-13)
    sum e = 2.8156216241245174e-09
    sum de = -1.0173236447336938e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.24e-03 |
|       force |  1.82e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002431252942832097 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.250720424353613 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 67.38s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.32670991283705814, dt = 0.002431252942832097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 312.92 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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.913845486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.653696151130607e-14,-1.311630708242114e-14,-7.856263061828103e-14)
    sum a = (-4.826848075561357e-13,6.558153541242927e-14,-3.0589699711759623e-13)
    sum e = 2.8154672613901955e-09
    sum de = -2.5831402946285613e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.33e-03 |
|       force |  1.81e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002430431678653781 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0914e+04 | 9216 |      1 | 2.981e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.359426605593058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3291411657798902, dt = 0.002430431678653781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 305.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.9423828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.537100501074927e-14,-1.2957890624445599e-14,-7.929176154908985e-14)
    sum a = (-4.768550250542306e-13,6.478945312295817e-14,-2.9418361533680443e-13)
    sum e = 2.8154958264790063e-09
    sum de = 4.868248638253435e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.37e-03 |
|       force |  1.80e-02 |
| dust1_fluid |  2.43e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002429889022531311 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.978e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.38464346743197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.331571597458544, dt = 0.002429889022531311 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 289.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
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.9817708333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.4219384664065e-14,-1.2801421994470676e-14,-7.99923607995378e-14)
    sum a = (-4.710969233203412e-13,6.40071099719942e-14,-2.825500371086398e-13)
    sum e = 2.8157037804099255e-09
    sum de = 1.2180010773764772e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.0100407695714271
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.422638043816257e-14,-1.2802372497987351e-14,-7.997822664751547e-14)
    sum a = (-4.711319021900675e-13,6.401186248983976e-14,-2.8262070786733683e-13)
    sum e = 2.8157527160412923e-09
    sum de = 1.2149632761240942e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.70e-03 |
|       force |  9.02e-03 |
| dust1_fluid |  1.21e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001214820983348187 cfl multiplier : 0.49999999999999983       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 1.9790e+04 | 9216 |      1 | 4.657e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.784585747881412 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.64s (niter = 2) global walltime = 68.44s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.3340014864810753, dt = 0.001214820983348187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 312.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.014865451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.36539970200713e-14,-1.2724603770207935e-14,-8.032164607481143e-14)
    sum a = (-4.682699850994809e-13,6.362301885172462e-14,-2.768168900268638e-13)
    sum e = 2.8159099003261983e-09
    sum de = 1.5760516362704749e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.28e-03 |
|       force |  1.21e-02 |
| dust1_fluid |  1.62e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0016197552019376047 cfl multiplier : 0.6666666666666665       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0960e+04 | 9216 |      1 | 2.977e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.691905651426493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3352163074644235, dt = 0.0016197552019376047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 296.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.027777777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.289725263426183e-14,-1.2621786242165748e-14,-8.076649637257044e-14)
    sum a = (-4.644862631716997e-13,6.310893121028587e-14,-2.6912246537114787e-13)
    sum e = 2.8161945281990575e-09
    sum de = 2.0515872564453624e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.68e-03 |
|       force |  1.42e-02 |
| dust1_fluid |  1.89e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018897983555303394 cfl multiplier : 0.7777777777777777       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7619e+04 | 9216 |      1 | 3.337e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.475126845081544 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.64s (niter = 2) global walltime = 69.07s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.33683606266636107, dt = 0.0018897983555303394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 294.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.046223958333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.202253160959227e-14,-1.2502939435810121e-14,-8.126885202288802e-14)
    sum a = (-4.601126580482716e-13,6.251469717863519e-14,-2.6020020618774755e-13)
    sum e = 2.816626608964469e-09
    sum de = 2.5982447274693834e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.96e-03 |
|       force |  1.55e-02 |
| dust1_fluid |  2.07e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002070034540874428 cfl multiplier : 0.8518518518518517        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0605e+04 | 9216 |      1 | 3.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.592796429820527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3387258610218914, dt = 0.002070034540874428 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 298.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.071831597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.107421513062463e-14,-1.2374093344587075e-14,-8.179904480188029e-14)
    sum a = (-4.553710756527277e-13,6.187046672335947e-14,-2.5049576484145006e-13)
    sum e = 2.8172202214576193e-09
    sum de = 3.1869528240927025e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.17e-03 |
|       force |  1.65e-02 |
| dust1_fluid |  2.19e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0021905238651177632 cfl multiplier : 0.9012345679012345       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6815e+04 | 9216 |      1 | 3.437e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.682421541662706 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 69.72s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.34079589556276585, dt = 0.0021905238651177632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 268.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.6%)
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: 4.093315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.008162154159166e-14,-1.2239231400331346e-14,-8.23377174884772e-14)
    sum a = (-4.504081077081839e-13,6.119615700193152e-14,-2.403066358525761e-13)
    sum e = 2.817981904932589e-09
    sum de = 3.7984159139018895e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.32e-03 |
|       force |  1.71e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0022706948813288157 cfl multiplier : 0.934156378600823        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1034e+04 | 9216 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.554622702646995 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 70.02s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.3429864194278836, dt = 0.0022706948813288157 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 291.69 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 4.116644965277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.906431790677133e-14,-1.2101012145636499e-14,-8.287222077135141e-14)
    sum a = (-4.4532158953287625e-13,6.050506072724167e-14,-2.2983446014890833e-13)
    sum e = 2.8189128915756537e-09
    sum de = 4.41971715088059e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.44e-03 |
|       force |  1.75e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023238707084899993 cfl multiplier : 0.9561042524005486       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0488e+04 | 9216 |      1 | 3.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.0423988103495 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 70.32s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.3452571143092124, dt = 0.0023238707084899993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 272.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
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: 4.140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.803522307438875e-14,-1.1961190841685482e-14,-8.339443678320561e-14)
    sum a = (-4.401761153717413e-13,5.980595420792427e-14,-2.1921509926180178e-13)
    sum e = 2.820011207174158e-09
    sum de = 5.042301705812363e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.54e-03 |
|       force |  1.79e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002359668154489628 cfl multiplier : 0.9707361682670325        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0851e+04 | 9216 |      1 | 2.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.005318101423143 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 70.62s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.3475809850177024, dt = 0.002359668154489628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 270.89 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 18.74 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.169813368055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.70025322209226e-14,-1.1820880952672602e-14,-8.389937266106676e-14)
    sum a = (-4.350126611043263e-13,5.910440476380692e-14,-2.085372379078221e-13)
    sum e = 2.8212734979552947e-09
    sum de = 5.6607036184727e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  1.84e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023833315749113315 cfl multiplier : 0.9804907788446883       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0990e+04 | 9216 |      1 | 2.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.565205279523248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 70.92s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.34994065317219203, dt = 0.0023833315749113315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 318.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 5.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (7.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.200412326388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.597184482952831e-14,-1.168084327052501e-14,-8.438378794001685e-14)
    sum a = (-4.2985922414746553e-13,5.840421635287574e-14,-1.9786381113350006e-13)
    sum e = 2.8226953301301927e-09
    sum de = 6.271182576468239e-10
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012118121714600423
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.597798600403736e-14,-1.1681677661098108e-14,-8.437106878249537e-14)
    sum a = (-4.2988993002027774e-13,5.840838830628638e-14,-1.9792740692085053e-13)
    sum e = 2.822735675727691e-09
    sum de = 6.267624183809494e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  1.85e-03 |
|       force |  9.46e-03 |
| dust1_fluid |  1.20e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0011990286496553891 cfl multiplier : 0.4934969262815628       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.0432e+04 | 9216 |      1 | 4.511e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.02177941850061 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 71.37s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.35232398474710336, dt = 0.0011990286496553891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 285.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.235460069444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.546249907060592e-14,-1.1611639358564094e-14,-8.460846519886816e-14)
    sum a = (-4.2731249535226036e-13,5.805819679294148e-14,-1.9258531238990345e-13)
    sum e = 2.823494958307269e-09
    sum de = 6.570281014175395e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.49e-03 |
|       force |  1.28e-02 |
| dust1_fluid |  1.61e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.001608922409970444 cfl multiplier : 0.6623312841877085        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0977e+04 | 9216 |      1 | 2.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.508856924712724 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 71.67s (max_walltime = 71.88s)  [SPH][rank=0]
---------------- t = 0.35352301339675873, dt = 0.001608922409970444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 348.45 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.253472222222221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.47765316297784e-14,-1.1518438169489118e-14,-8.491511736159922e-14)
    sum a = (-4.2388265814980423e-13,5.759219084751124e-14,-1.8547380102783322e-13)
    sum e = 2.8245763960293745e-09
    sum de = 6.9702319423137e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  2.92e-03 |
|       force |  1.50e-02 |
| dust1_fluid |  1.88e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0018819085579233328 cfl multiplier : 0.7748875227918056       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0880e+04 | 9216 |      1 | 2.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.407503656752525 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 71.97s > 71.88s                 [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 2):
   -> walltime = 71.965351139 >= 71.877468049
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000002.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (53.3%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000002.sham              [Shamrock Dump][rank=0]
              - took 1.37 ms, bandwidth = 2.54 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 71.965351139 -> 101.965351139

[Simulation] Evolve until next trigger(s) :
   -> t = 0.4 (current = 0.3551319358067292)
   -> iter = None (current = 167)
   -> walltime = 101.965351139 (current = 71.968885668)

Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = 101.97s)      [SPH][rank=0]
---------------- t = 0.3551319358067292, dt = 0.0018819085579233328 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (1.0%)
   patch tree reduce : 1.36 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 266.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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: 4.279622395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.398158239881928e-14,-1.1410429816368687e-14,-8.52584411600175e-14)
    sum a = (-4.1990791199365857e-13,5.705214908226733e-14,-1.7723058863796667e-13)
    sum e = 2.8259251294120818e-09
    sum de = 7.429577756094357e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.23e-03 |
|       force |  1.66e-02 |
| dust1_fluid |  2.06e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0020636942800659054 cfl multiplier : 0.849925015194537        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0995e+04 | 9216 |      1 | 2.973e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.785082708733533 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.15s (niter = 24) global walltime = 72.27s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.3570138443646525, dt = 0.0020636942800659054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 280.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.313259548611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.311876089708615e-14,-1.1293199777253352e-14,-8.561643442610517e-14)
    sum a = (-4.1559380448481073e-13,5.646599888638022e-14,-1.682840850781599e-13)
    sum e = 2.827504886719934e-09
    sum de = 7.92290177665279e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.44e-03 |
|       force |  1.77e-02 |
| dust1_fluid |  2.18e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0021847755499056665 cfl multiplier : 0.8999500101296913       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.89869400917681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3590775386447184, dt = 0.0021847755499056665 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 334.91 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.338541666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.221523321384999e-14,-1.1170439060887448e-14,-8.59748659564812e-14)
    sum a = (-4.1107616606901344e-13,5.585219530428922e-14,-1.589195116132908e-13)
    sum e = 2.829288795983923e-09
    sum de = 8.433406488322094e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.60e-03 |
|       force |  1.83e-02 |
| dust1_fluid |  2.27e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002265486620553568 cfl multiplier : 0.9333000067531275        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0805e+04 | 9216 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.290018128874536 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.36126231419462407, dt = 0.002265486620553568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.54 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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: 4.360460069444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.128888067257039e-14,-1.1044577171225767e-14,-8.632466623821395e-14)
    sum a = (-4.064444033622046e-13,5.522288585538505e-14,-1.4932660252002635e-13)
    sum e = 2.8312562335770255e-09
    sum de = 8.950057053144124e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.71e-03 |
|       force |  1.85e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002319378678986404 cfl multiplier : 0.9555333378354183        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0932e+04 | 9216 |      1 | 2.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.37323249028644 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36352780081517766, dt = 0.002319378678986404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 284.80 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.390842013888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.035142878743838e-14,-1.0917207233249168e-14,-8.66601448726947e-14)
    sum a = (-4.017571439370397e-13,5.4586036166583206e-14,-1.39631478936346e-13)
    sum e = 2.8333910615405338e-09
    sum de = 9.465638509953682e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.81e-03 |
|       force |  1.86e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002355477614631961 cfl multiplier : 0.9703555585569456        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.001e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.82755578018769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36584717949416407, dt = 0.002355477614631961 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 312.35 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.409288194444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.941053459316408e-14,-1.0789369594782295e-14,-8.697780036417493e-14)
    sum a = (-3.9705267296567635e-13,5.3946847973688446e-14,-1.2991819353509524e-13)
    sum e = 2.8356804811736476e-09
    sum de = 9.975449755521408e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.89e-03 |
|       force |  1.88e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023797137311271552 cfl multiplier : 0.9802370390379638       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8402e+04 | 9216 |      1 | 3.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.13258676762781 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.368202657108796, dt = 0.0023797137311271552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 299.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.427517361111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.847120353335813e-14,-1.0661744336648561e-14,-8.727552876012228e-14)
    sum a = (-3.923560176671528e-13,5.330872168393399e-14,-1.2024281391220706e-13)
    sum e = 2.838114133638518e-09
    sum de = 1.047641833100257e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.96e-03 |
|       force |  1.91e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002394886291223089 cfl multiplier : 0.9868246926919758        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.006e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49766665102153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3705823708399232, dt = 0.002394886291223089 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 272.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.451605902777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.753714383291912e-14,-1.053483528883106e-14,-8.755198430985448e-14)
    sum a = (-3.8768571916433695e-13,5.2674176443524804e-14,-1.1064709877936588e-13)
    sum e = 2.84068226068777e-09
    sum de = 1.096631116297543e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.03e-03 |
|       force |  1.95e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002405003117083781 cfl multiplier : 0.9912164617946505        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.000e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.740194075401778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37297725713114627, dt = 0.002405003117083781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 302.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 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: 4.474066840277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.661035088681156e-14,-1.0408913562144368e-14,-8.780660060402456e-14)
    sum a = (-3.83051754434197e-13,5.204456781078531e-14,-1.011543898108955e-13)
    sum e = 2.8433777521700437e-09
    sum de = 1.1443901334152103e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.09e-03 |
|       force |  1.99e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024118292952943522 cfl multiplier : 0.9941443078631004       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0488e+04 | 9216 |      1 | 3.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.642439171547572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37538226024823007, dt = 0.0024118292952943522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 301.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 4.496853298611112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.569206779366284e-14,-1.0284148054197623e-14,-8.803915272738823e-14)
    sum a = (-3.784603389683001e-13,5.142074027107032e-14,-9.177972838028219e-14)
    sum e = 2.8461946157803875e-09
    sum de = 1.190841623576541e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.16e-03 |
|       force |  1.99e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024165255081913077 cfl multiplier : 0.9960962052420669       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8120e+04 | 9216 |      1 | 3.277e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.492717878977935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37779408954352445, dt = 0.0024165255081913077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 311.92 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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: 4.516384548611112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.478304558587187e-14,-1.0160640806451878e-14,-8.824963574059648e-14)
    sum a = (-3.739152279290728e-13,5.08032040327222e-14,-8.253345114570773e-14)
    sum e = 2.849127642306631e-09
    sum de = 1.235938350286333e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.23e-03 |
|       force |  1.98e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024196514381527494 cfl multiplier : 0.997397470161378        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3639e+04 | 9216 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.313990710355185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3802106150517158, dt = 0.0024196514381527494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 312.83 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.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: 4.537000868055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.388379275524646e-14,-1.0038460906787875e-14,-8.843816599200788e-14)
    sum a = (-3.6941896377548954e-13,5.019230453385752e-14,-7.342334563498622e-14)
    sum e = 2.852171939395213e-09
    sum de = 1.2796486553807342e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.31e-03 |
|       force |  1.98e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002420973136582857 cfl multiplier : 0.9982649801075855        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.037e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.677593394157345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.38263026648986853, dt = 0.002420973136582857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 266.82 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.561089409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.299487906381592e-14,-9.917685767773879e-15,-8.860490029938198e-14)
    sum a = (-3.649743953187188e-13,4.958842883876791e-14,-6.445850760427203e-14)
    sum e = 2.855322040678319e-09
    sum de = 1.3219423200055507e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.38e-03 |
|       force |  2.00e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002421899798974412 cfl multiplier : 0.9988433200717237        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.2699e+04 | 9216 |      1 | 4.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.4664095538274 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3850512396264514, dt = 0.002421899798974412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 308.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 4.578559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.211632773958119e-14,-9.798318545356457e-15,-8.875016052997245e-14)
    sum a = (-3.605816386973243e-13,4.899159272773935e-14,-5.564153139701611e-14)
    sum e = 2.8585740541357687e-09
    sum de = 1.3628185223058421e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.47e-03 |
|       force |  2.04e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00242265396887551 cfl multiplier : 0.9992288800478158         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.040e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.68208903393086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.38747313942542577, dt = 0.00242265396887551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.1%)
   patch tree reduce : 1.77 us    (0.3%)
   gen split merge   : 1.23 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.2%)
   LB compute        : 524.39 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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: 4.597547743055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.124808260967768e-14,-9.680351607419473e-15,-8.887428379037553e-14)
    sum a = (-3.562404130485065e-13,4.840175803744933e-14,-4.697410836978399e-14)
    sum e = 2.8619243781001324e-09
    sum de = 1.4022810092733628e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.56e-03 |
|       force |  2.06e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002423373659886089 cfl multiplier : 0.9994859200318773        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7885e+04 | 9216 |      1 | 3.305e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.388897958982614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3898957933943013, dt = 0.002423373659886089 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 283.56 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.609917534722221
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.03900376198824e-14,-9.56377054457744e-15,-8.897762052395975e-14)
    sum a = (-3.519501880992873e-13,4.7818852723191305e-14,-3.845900572605207e-14)
    sum e = 2.865369609090971e-09
    sum de = 1.4403378427588627e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.63e-03 |
|       force |  2.04e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024239409342152137 cfl multiplier : 0.9996572800212515       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7006e+04 | 9216 |      1 | 3.413e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.564695579943898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3923191670541874, dt = 0.0024239409342152137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 287.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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: 4.622287326388888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954212956121217e-14,-9.44856676872813e-15,-8.906052524451292e-14)
    sum a = (-3.4771064780555795e-13,4.724283384382477e-14,-3.0098686082715735e-14)
    sum e = 2.868906189791028e-09
    sum de = 1.4769966458711449e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.62e-03 |
|       force |  2.04e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024233657507362802 cfl multiplier : 0.9997715200141677       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.028e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.815325635758466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3947431079884026, dt = 0.0024233657507362802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.636610243055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.870463768378258e-14,-9.334778221093895e-15,-8.912333290898584e-14)
    sum a = (-3.435231884183454e-13,4.6673891104878696e-14,-2.1896738427502897e-14)
    sum e = 2.8725290849532124e-09
    sum de = 1.512252180842213e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.62e-03 |
|       force |  2.05e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024225819870468458 cfl multiplier : 0.9998476800094451       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7649e+04 | 9216 |      1 | 3.333e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.17302932423582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3971664737391389, dt = 0.0024225819870468458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 311.61 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.654947916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.787749846821894e-14,-9.222396271411413e-15,-8.916644139354296e-14)
    sum a = (-3.3938749234090666e-13,4.6111981357612334e-14,-1.385310863639931e-14)
    sum e = 2.8762345414405913e-09
    sum de = 1.546116815388566e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.62e-03 |
|       force |  2.07e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024216749828141434 cfl multiplier : 0.9998984533396301       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.038e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70509681577493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.39958905572618575, dt = 0.00041094427381427323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 295.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.666992187499999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.774303865304835e-14,-9.204127452934816e-15,-8.916239107285543e-14)
    sum a = (-3.3871519326562516e-13,4.602063726461521e-14,-1.2551204342572401e-14)
    sum e = 2.8768928158385024e-09
    sum de = 1.551308941995469e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.63e-03 |
|       force |  2.08e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002421601716070333 cfl multiplier : 0.9999323022264202        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.909249677093698 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 188                                                     [SPH][rank=0]
Info: time since start : 78.34153371000001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 4):
   -> t = 0.4 >= 0.4
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.4 -> 0.5

[Simulation] Evolve until next trigger(s) :
   -> t = 0.5 (current = 0.4)
   -> iter = None (current = 187)
   -> walltime = 101.965351139 (current = 81.38368514700001)

Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = 101.97s)      [SPH][rank=0]
---------------- t = 0.4, dt = 0.002421601716070333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 296.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.669270833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.692294349850398e-14,-9.092702567426228e-15,-8.919251758584878e-14)
    sum a = (-3.346147174922697e-13,4.546351283741698e-14,-4.642856079881934e-15)
    sum e = 2.8806679821481465e-09
    sum de = 1.5839864004255219e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.64e-03 |
|       force |  2.12e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024208555964799097 cfl multiplier : 0.9999548681509468       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8382e+04 | 9216 |      1 | 3.247e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.847787736858738 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.88s (niter = 15) global walltime = 81.71s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.40242160171607033, dt = 0.0024208555964799097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 289.17 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (55.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.682074652777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.611785444658315e-14,-8.983316534671542e-15,-8.919418183503576e-14)
    sum a = (-3.3058927223292373e-13,4.491658267361377e-14,3.0640070214393604e-15)
    sum e = 2.884541268067914e-09
    sum de = 1.6148809719325438e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.67e-03 |
|       force |  2.10e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002420282056045827 cfl multiplier : 0.9999699121006312        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.627792885948434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.40484245731255025, dt = 0.002420282056045827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.18 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.695529513888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.532260767391915e-14,-8.875267755082627e-15,-8.91774374725643e-14)
    sum a = (-3.266130383695472e-13,4.437633877575854e-14,1.0621058660568512e-14)
    sum e = 2.8884864239307647e-09
    sum de = 1.6444365386618191e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.64e-03 |
|       force |  2.10e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024198777181573348 cfl multiplier : 0.9999799414004208       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.052e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.552226324912066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4072627393685961, dt = 0.0024198777181573348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 307.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 4.7109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.45370558636437e-14,-8.768536212971543e-15,-8.914259071113425e-14)
    sum a = (-3.226852793177198e-13,4.3842681065648824e-14,1.8031655397725053e-14)
    sum e = 2.8925008552994455e-09
    sum de = 1.6726652111667039e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.61e-03 |
|       force |  2.06e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024196333132687786 cfl multiplier : 0.9999866276002806       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7455e+04 | 9216 |      1 | 3.357e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.952045237458524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4096826170867534, dt = 0.0024196333132687786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 309.19 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.724609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.37610281604109e-14,-8.663098694523258e-15,-8.908999434807739e-14)
    sum a = (-3.188051408013195e-13,4.3315493472296895e-14,2.5299691582592524e-14)
    sum e = 2.8965816096895065e-09
    sum de = 1.699581631959003e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.59e-03 |
|       force |  2.03e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002419534276997962 cfl multiplier : 0.9999910850668536        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9053e+04 | 9216 |      1 | 3.172e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.460280363553306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4121022504000222, dt = 0.002419534276997962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 278.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.734483506944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.299436245076618e-14,-8.55893317367208e-15,-8.901998788589932e-14)
    sum a = (-3.149718122538486e-13,4.2794665867501255e-14,3.242940543664376e-14)
    sum e = 2.9007257640497066e-09
    sum de = 1.7252001889285714e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.57e-03 |
|       force |  2.01e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002417868056729058 cfl multiplier : 0.9999940567112358        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7551e+04 | 9216 |      1 | 3.345e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.039381769921118 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41452178467702017, dt = 0.002417868056729058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 298.57 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 4.746744791666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.223743960205633e-14,-8.45609139819632e-15,-8.89329525687402e-14)
    sum a = (-3.1118719800985096e-13,4.2280456992327284e-14,3.9420699956783225e-14)
    sum e = 2.904927467281359e-09
    sum de = 1.7495192967051324e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.56e-03 |
|       force |  2.01e-02 |
| dust1_fluid |  2.42e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024158034246853904 cfl multiplier : 0.9999960378074905       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8984e+04 | 9216 |      1 | 3.180e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.374914353902025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4169396527337492, dt = 0.0024158034246853904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 300.36 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.756401909722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.149024785232988e-14,-8.354571770002823e-15,-8.882926789303082e-14)
    sum a = (-3.074512392605291e-13,4.1772858849613896e-14,4.627811172847168e-14)
    sum e = 2.9091827784365993e-09
    sum de = 1.772550745403855e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.55e-03 |
|       force |  2.03e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024139708533764534 cfl multiplier : 0.9999973585383269       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0116e+04 | 9216 |      1 | 3.060e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.419589785926583 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4193554561584346, dt = 0.0024139708533764534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.3%)
   patch tree reduce : 2.30 us    (0.4%)
   gen split merge   : 1.29 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.2%)
   LB compute        : 494.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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: 4.764322916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.075258219289134e-14,-8.254346434942988e-15,-8.870927080077608e-14)
    sum a = (-3.037629109639997e-13,4.127173217501864e-14,5.300736157014798e-14)
    sum e = 2.9134889164327983e-09
    sum de = 1.7943139571273298e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.55e-03 |
|       force |  2.07e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024123832763276 cfl multiplier : 0.9999982390255514          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7986e+04 | 9216 |      1 | 3.293e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.389742873742723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4217694270118111, dt = 0.0024123832763276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 322.99 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 4.770941840277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.002424138501465e-14,-8.155388051051989e-15,-8.857327462163359e-14)
    sum a = (-3.0012120692491756e-13,4.077694025518782e-14,5.96128822088274e-14)
    sum e = 2.9178431970267867e-09
    sum de = 1.8148281991977815e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.56e-03 |
|       force |  2.13e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002411046909402669 cfl multiplier : 0.9999988260170344        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.255884089514595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42418181028813867, dt = 0.002411046909402669 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 260.55 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.77734375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.930502766957301e-14,-8.057669749150475e-15,-8.84215776425158e-14)
    sum a = (-2.9652513834787797e-13,4.028834874602192e-14,6.609787854513327e-14)
    sum e = 2.9222430184215457e-09
    sum de = 1.834113070250475e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.57e-03 |
|       force |  2.22e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024099613752751013 cfl multiplier : 0.9999992173446897       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0215e+04 | 9216 |      1 | 3.050e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.456990260734443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42659285719754136, dt = 0.0024099613752751013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 300.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.781575520833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.859474868437052e-14,-7.961165393323675e-15,-8.825446649308225e-14)
    sum a = (-2.929737434211245e-13,3.980582696674927e-14,7.246610795753519e-14)
    sum e = 2.9266858526109086e-09
    sum de = 1.8521890630682074e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.58e-03 |
|       force |  2.32e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024091200256736943 cfl multiplier : 0.9999994782297931       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9578e+04 | 9216 |      1 | 3.116e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.844326802850492 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42900281857281647, dt = 0.0024091200256736943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 288.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 4.785915798611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.789321913439956e-14,-7.865849807864403e-15,-8.807221334768678e-14)
    sum a = (-2.8946609567190225e-13,3.9329249039680875e-14,7.872097670566499e-14)
    sum e = 2.9311692191299666e-09
    sum de = 1.8690750974994587e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.60e-03 |
|       force |  2.32e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024085103051129765 cfl multiplier : 0.9999996521531953       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7811e+04 | 9216 |      1 | 3.314e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.172266350800353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.43141193859849014, dt = 0.0024085103051129765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.71 us    (2.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 303.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.788736979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.720026223221141e-14,-7.77169897297433e-15,-8.787507869926862e-14)
    sum a = (-2.860013111599276e-13,3.8858494865157876e-14,8.48655541411793e-14)
    sum e = 2.9356906866880133e-09
    sum de = 1.88479196656704e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.62e-03 |
|       force |  2.32e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00240811424944084 cfl multiplier : 0.9999997681021302         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8509e+04 | 9216 |      1 | 3.233e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.821504128292457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4338204489036031, dt = 0.00240811424944084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 263.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.791558159722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.651571088404825e-14,-7.678690185918149e-15,-8.766331311006561e-14)
    sum a = (-2.825785544208362e-13,3.839345092908484e-14,9.09026196867625e-14)
    sum e = 2.9402478581823707e-09
    sum de = 1.899361185783965e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.65e-03 |
|       force |  2.34e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024073306128282045 cfl multiplier : 0.9999998454014202       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.067e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.267847904969603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4362285631530439, dt = 0.0024073306128282045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.6%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 267.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.793185763888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.583957207410088e-14,-7.586824395629578e-15,-8.743721147908225e-14)
    sum a = (-2.7919786036973345e-13,3.7934121977929355e-14,9.683368139736643e-14)
    sum e = 2.944837249492426e-09
    sum de = 1.9127999159039053e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.68e-03 |
|       force |  2.38e-02 |
| dust1_fluid |  2.41e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002405715703210932 cfl multiplier : 0.9999998969342802        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7681e+04 | 9216 |      1 | 3.329e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.030076805517798 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.82s (niter = 12) global walltime = 86.48s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.43863589376587214, dt = 0.002405715703210932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 291.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.795789930555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5171970621247134e-14,-7.496118561021939e-15,-8.719711815793508e-14)
    sum a = (-2.758598531073549e-13,3.7480592804797646e-14,1.0265938900446488e-13)
    sum e = 2.9494545535981374e-09
    sum de = 1.9251250865212983e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.71e-03 |
|       force |  2.45e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024039279879162546 cfl multiplier : 0.99999993128952         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9854e+04 | 9216 |      1 | 3.087e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.05510595293266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.44104160946908305, dt = 0.0024039279879162546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 297.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
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: 4.796332465277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.451283854786399e-14,-7.40656344610216e-15,-8.694332488132588e-14)
    sum a = (-2.7256419273894497e-13,3.703281723041599e-14,1.0838264308999288e-13)
    sum e = 2.954096741019284e-09
    sum de = 1.936356872904689e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.71e-03 |
|       force |  2.48e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024023765958154026 cfl multiplier : 0.9999999541930134       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9856e+04 | 9216 |      1 | 3.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.036024236021508 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44344553745699933, dt = 0.0024023765958154026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 315.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.796549479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.386199797547073e-14,-7.318134882827589e-15,-8.667606981092283e-14)
    sum a = (-2.6930998987666654e-13,3.6590674414961546e-14,1.140077247831778e-13)
    sum e = 2.958761631789285e-09
    sum de = 1.9465171043691373e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.71e-03 |
|       force |  2.48e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0024010531129211206 cfl multiplier : 0.9999999694620089       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6298e+04 | 9216 |      1 | 3.504e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.678558447662077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4458479140528147, dt = 0.0024010531129211206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 295.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
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: 4.803059895833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3219279296333854e-14,-7.230809826896469e-15,-8.639557442603856e-14)
    sum a = (-2.6609639648221854e-13,3.6154049134943846e-14,1.19538660642709e-13)
    sum e = 2.9634470975907037e-09
    sum de = 1.9556271594721913e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.70e-03 |
|       force |  2.44e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023999433150229846 cfl multiplier : 0.9999999796413391       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.089e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.986282746189936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4482489671657358, dt = 0.0023999433150229846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.09 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.810004340277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.258452103265627e-14,-7.14456633860883e-15,-8.610204838119386e-14)
    sum a = (-2.6292260516331837e-13,3.5722831693091134e-14,1.2497917523278252e-13)
    sum e = 2.9681510401956803e-09
    sum de = 1.9637078657493685e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.69e-03 |
|       force |  2.41e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002398097622933415 cfl multiplier : 0.9999999864275594        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9841e+04 | 9216 |      1 | 3.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.97515946001468 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4506489104807588, dt = 0.002398097622933415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 319.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.817708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1957815417827634e-14,-7.059416949548408e-15,-8.579580765483581e-14)
    sum a = (-2.5978907708973567e-13,3.529708474850042e-14,1.3033023095242141e-13)
    sum e = 2.9728695457524968e-09
    sum de = 1.970776123110031e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.69e-03 |
|       force |  2.40e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023964825327700396 cfl multiplier : 0.9999999909517063       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.079e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.04190961398526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4530470081036922, dt = 0.0023964825327700396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.822699652777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1338992685490494e-14,-6.975338593859535e-15,-8.547705735591242e-14)
    sum a = (-2.5669496342754435e-13,3.487669296933787e-14,1.355945319592005e-13)
    sum e = 2.9776006330696133e-09
    sum de = 1.97685144601453e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.69e-03 |
|       force |  2.41e-02 |
| dust1_fluid |  2.40e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023951474777986893 cfl multiplier : 0.9999999939678043       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.85859931187119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4554434906364622, dt = 0.0023951474777986893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.828993055555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0727877885945334e-14,-6.8923075014374874e-15,-8.514598055195344e-14)
    sum a = (-2.5363938943073524e-13,3.446153750766605e-14,1.4077318801964122e-13)
    sum e = 2.9823424748917843e-09
    sum de = 1.9819523700698605e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.69e-03 |
|       force |  2.43e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002394085173213241 cfl multiplier : 0.9999999959785363        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8264e+04 | 9216 |      1 | 3.261e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.443595054334274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4578386381142609, dt = 0.002394085173213241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 317.96 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.833441840277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0124302859542616e-14,-6.810300824722021e-15,-8.480275572728062e-14)
    sum a = (-2.506215142974466e-13,3.4051504123349514e-14,1.4586781144411704e-13)
    sum e = 2.987093281068617e-09
    sum de = 1.9860967792394646e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.64e-03 |
|       force |  2.46e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002393281036922817 cfl multiplier : 0.9999999973190242        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9877e+04 | 9216 |      1 | 3.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.940670835347664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.46023272328747417, dt = 0.002393281036922817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
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: 4.837239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9528107666984853e-14,-6.729296833049089e-15,-8.444755457904452e-14)
    sum a = (-2.47640538334854e-13,3.3646484165904323e-14,1.5088152564285346e-13)
    sum e = 2.991851284023426e-09
    sum de = 1.9893031498345903e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.59e-03 |
|       force |  2.52e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002392713784430396 cfl multiplier : 0.9999999982126827        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9845e+04 | 9216 |      1 | 3.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.901196185074884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.462626004324397, dt = 0.002392713784430396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 283.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.842122395833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.893914189394908e-14,-6.6492750898782574e-15,-8.4080538659121e-14)
    sum a = (-2.446957094691134e-13,3.32463754500098e-14,1.5581580633435272e-13)
    sum e = 2.996614719853477e-09
    sum de = 1.9915886433129844e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.55e-03 |
|       force |  2.56e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002392356191968997 cfl multiplier : 0.999999998808455         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7049e+04 | 9216 |      1 | 3.407e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.280992729924833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4650187181088274, dt = 0.002392356191968997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 287.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 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: 4.846571180555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.835726566456231e-14,-6.570216590531036e-15,-8.37018685894051e-14)
    sum a = (-2.4178632832198165e-13,3.285108295312135e-14,1.6067196506037225e-13)
    sum e = 3.001381818026847e-09
    sum de = 1.992971268267667e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.45e-03 |
|       force |  2.55e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023921761729836927 cfl multiplier : 0.9999999992056366       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9644e+04 | 9216 |      1 | 3.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.70239329288246 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.86s (niter = 9) global walltime = 90.29s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.46741107430079637, dt = 0.0023921761729836927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 271.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 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: 4.849500868055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.778235030899887e-14,-6.492103852859843e-15,-8.331170411224602e-14)
    sum a = (-2.3891175154463634e-13,3.2460519264045436e-14,1.6545173493080096e-13)
    sum e = 3.0061507885738046e-09
    sum de = 1.993468685872301e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.40e-03 |
|       force |  2.56e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002390866200558514 cfl multiplier : 0.9999999994704245        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6991e+04 | 9216 |      1 | 3.415e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22116165295873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4698032504737801, dt = 0.002390866200558514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 283.26 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.850477430555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.721458252435117e-14,-6.414962243075221e-15,-8.291041412556802e-14)
    sum a = (-2.360729126210197e-13,3.207481121419205e-14,1.7015413716873244e-13)
    sum e = 3.010917269485512e-09
    sum de = 1.9930973341516124e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.36e-03 |
|       force |  2.57e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023893340942776663 cfl multiplier : 0.9999999996469496       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5592e+04 | 9216 |      1 | 3.601e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.900884259499026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4721941166743386, dt = 0.0023893340942776663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 288.73 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.850911458333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.665391910750687e-14,-6.338785891242057e-15,-8.249823763700615e-14)
    sum a = (-2.3326959553804605e-13,3.169392945537147e-14,1.7477903815769407e-13)
    sum e = 3.0156787673954454e-09
    sum de = 1.9918766508904096e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.31e-03 |
|       force |  2.51e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023877896645358707 cfl multiplier : 0.999999999764633        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9124e+04 | 9216 |      1 | 3.164e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.182569502034507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.47458345076861624, dt = 0.0023877896645358707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 263.77 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.851453993055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6100269408772016e-14,-6.263562480946137e-15,-8.207537683933098e-14)
    sum a = (-2.3050134704354885e-13,3.131781240555491e-14,1.7932706909960672e-13)
    sum e = 3.0204332613133177e-09
    sum de = 1.9898272265544344e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.28e-03 |
|       force |  2.48e-02 |
| dust1_fluid |  2.39e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002386421518054474 cfl multiplier : 0.9999999998430887        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9893e+04 | 9216 |      1 | 3.083e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.88192321299205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4769712404331521, dt = 0.002386421518054474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 313.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.850368923611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.555350103181753e-14,-6.189274023725774e-15,-8.164199699225174e-14)
    sum a = (-2.277675051588042e-13,3.09463701186521e-14,1.838007786315643e-13)
    sum e = 3.0251791527766235e-09
    sum de = 1.986967489301955e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.06e-03 |
|       force |  2.47e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023849323261268484 cfl multiplier : 0.9999999998953925       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.758009521310075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.47935766195120655, dt = 0.0023849323261268484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 337.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.850151909722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.501355299547431e-14,-6.1159122341865905e-15,-8.119830649527663e-14)
    sum a = (-2.2506776497651465e-13,3.057956117079558e-14,1.882006830060613e-13)
    sum e = 3.0299143074374804e-09
    sum de = 1.983319609069274e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.04e-03 |
|       force |  2.48e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002383512062780216 cfl multiplier : 0.9999999999302617        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8037e+04 | 9216 |      1 | 3.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.119563531888833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4817425942773334, dt = 0.002383512062780216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 301.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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: 4.848524305555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.448032061152626e-14,-6.04346288852024e-15,-8.07444811601007e-14)
    sum a = (-2.2240160305861816e-13,3.021731444329814e-14,1.9252750736747957e-13)
    sum e = 3.0346370238215427e-09
    sum de = 1.978904313914688e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.03e-03 |
|       force |  2.51e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023822685870028863 cfl multiplier : 0.9999999999535077       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9689e+04 | 9216 |      1 | 3.104e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.641855631965843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4841261063401136, dt = 0.0023822685870028863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 321.40 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.844943576388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3953677673407154e-14,-5.9719088392612056e-15,-8.028067240816195e-14)
    sum a = (-2.1976838836627091e-13,2.985954419714576e-14,1.9678193515907756e-13)
    sum e = 3.0393458616959755e-09
    sum de = 1.9737406560433254e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.02e-03 |
|       force |  2.57e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023811929770983687 cfl multiplier : 0.9999999999690052       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.730243172201995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4865083749271165, dt = 0.0023811929770983687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 309.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.36 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: 4.842447916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.343350324276357e-14,-5.9012336547294696e-15,-7.980702905122472e-14)
    sum a = (-2.1716751621407372e-13,2.9506168274171846e-14,2.0096444734388517e-13)
    sum e = 3.0440394091850503e-09
    sum de = 1.9678475474510016e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.00e-03 |
|       force |  2.66e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023801136635391543 cfl multiplier : 0.9999999999793369       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.092e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.720712024611313 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.91s (niter = 6) global walltime = 93.18s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.4888895679042149, dt = 0.0023801136635391543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.9%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.837565104166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.291971645939705e-14,-5.831426348593321e-15,-7.932373113989989e-14)
    sum a = (-2.14598582296887e-13,2.9157131743934126e-14,2.0507510425966036e-13)
    sum e = 3.048715958829233e-09
    sum de = 1.9612436705809572e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.90e-03 |
|       force |  2.79e-02 |
| dust1_fluid |  2.38e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002377269080398649 cfl multiplier : 0.9999999999862247        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6815e+04 | 9216 |      1 | 3.437e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.930381607929956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.491269681567754, dt = 0.002377269080398649 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 2.12 us    (0.7%)
   LB compute        : 277.33 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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: 4.831814236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2412615062363426e-14,-5.762527374132963e-15,-7.883132052015777e-14)
    sum a = (-2.1206307531260156e-13,2.881263687043288e-14,2.0911123491226606e-13)
    sum e = 3.0533703897716093e-09
    sum de = 1.9539527117587015e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.89e-03 |
|       force |  2.78e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023745447828502596 cfl multiplier : 0.9999999999908166       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.096e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.64657496582248 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49364695064815267, dt = 0.0023745447828502596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.826931423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1912075584422944e-14,-5.694519956077192e-15,-7.832997904389726e-14)
    sum a = (-2.095603779219915e-13,2.8472599779882365e-14,2.1307344750214194e-13)
    sum e = 3.0580013842182224e-09
    sum de = 1.945993635262239e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.88e-03 |
|       force |  2.76e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002371961508237355 cfl multiplier : 0.9999999999938778        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.078e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.76820338746895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49602149543100293, dt = 0.002371961508237355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 302.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (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: 4.822157118055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.141797781785681e-14,-5.627387762010143e-15,-7.781987280239024e-14)
    sum a = (-2.0708988908943582e-13,2.8136938810504563e-14,2.1696225498961104e-13)
    sum e = 3.0626076940640305e-09
    sum de = 1.9373841051063326e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.88e-03 |
|       force |  2.74e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002369536430679027 cfl multiplier : 0.9999999999959185        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9671e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.49181090122491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4983934569392403, dt = 0.0016065430607596909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.817057291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1088208945794596e-14,-5.582582645662528e-15,-7.746670154630776e-14)
    sum a = (-2.054410447288863e-13,2.7912913229069017e-14,2.19544524369246e-13)
    sum e = 3.0657078868188917e-09
    sum de = 1.931025571916847e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.88e-03 |
|       force |  2.70e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002367990076950512 cfl multiplier : 0.999999999997279         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7700e+04 | 9216 |      1 | 3.327e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38350278849167 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 230                                                     [SPH][rank=0]
Info: time since start : 94.78916913200001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 5):
   -> t = 0.5 >= 0.5
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.5 -> 0.6

[Simulation] Evolve until next trigger(s) :
   -> t = 0.6 (current = 0.5)
   -> iter = None (current = 229)
   -> walltime = 101.965351139 (current = 97.63256468600001)

Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = 101.97s)      [SPH][rank=0]
---------------- t = 0.5, dt = 0.002367990076950512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 308.04 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 4.811631944444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.060305106021135e-14,-5.516665097488647e-15,-7.694474802770963e-14)
    sum a = (-2.0301525530113242e-13,2.7583325487072e-14,2.2332363656522896e-13)
    sum e = 3.0702774456285534e-09
    sum de = 1.921525524389565e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.67e-02 |
| dust1_fluid |  2.37e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002365858370774578 cfl multiplier : 0.999999999998186         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.092e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.57355897258293 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 97.94s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5023679900769505, dt = 0.002365858370774578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 272.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
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: 4.806857638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.01256178417088e-14,-5.451797086242882e-15,-7.64119214827462e-14)
    sum a = (-2.0062808920851238e-13,2.7258985430554535e-14,2.2701776122597674e-13)
    sum e = 3.0748122477166994e-09
    sum de = 1.9112540427581417e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.66e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363911291166874 cfl multiplier : 0.9999999999987906        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8110e+04 | 9216 |      1 | 3.279e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.978073764145808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5047338484477252, dt = 0.002363911291166874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 292.93 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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: 4.798394097222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9654174684746e-14,-5.3877429341169315e-15,-7.587090174573097e-14)
    sum a = (-1.9827087342276541e-13,2.6938714670561593e-14,2.306398365834272e-13)
    sum e = 3.079318132492913e-09
    sum de = 1.9003916979356955e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.69e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023621510845732115 cfl multiplier : 0.9999999999991939       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6108e+04 | 9216 |      1 | 3.530e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.10850640189866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.507097759738892, dt = 0.0023621510845732115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 263.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (57.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.789605034722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.918861505055618e-14,-5.324488165872954e-15,-7.532181447322256e-14)
    sum a = (-1.9594307525227396e-13,2.6622440827981392e-14,2.341899869645861e-13)
    sum e = 3.083794314848448e-09
    sum de = 1.888952137970637e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.74e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023605759350474914 cfl multiplier : 0.9999999999994627       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.069e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.70593367142289 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.65s (niter = 2) global walltime = 98.93s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5094599108234652, dt = 0.0023605759350474914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.9%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 266.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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: 4.781575520833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8728825847963374e-14,-5.262017416021474e-15,-7.476479822987844e-14)
    sum a = (-1.9364412923896485e-13,2.631008708046118e-14,2.376683653035457e-13)
    sum e = 3.088239833011061e-09
    sum de = 1.8769497037572956e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.82e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002359180244102679 cfl multiplier : 0.9999999999996417        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8318e+04 | 9216 |      1 | 3.254e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.11246094336725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5118204867585127, dt = 0.002359180244102679 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 264.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.774197048611112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.827469786219307e-14,-5.2003158457311976e-15,-7.419999022984586e-14)
    sum a = (-1.9137348931120633e-13,2.600157922905259e-14,2.410750781511231e-13)
    sum e = 3.0926537465220356e-09
    sum de = 1.8643985232847598e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.82e-03 |
|       force |  2.80e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023579549086548772 cfl multiplier : 0.9999999999997611       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.101e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.39137035850496 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 99.57s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5141796670026153, dt = 0.0023579549086548772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 325.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.762912326388888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.782612622811531e-14,-5.139369207169752e-15,-7.362752754106454e-14)
    sum a = (-1.8913063114106115e-13,2.569684603546117e-14,2.4441019277108377e-13)
    sum e = 3.0970351276970294e-09
    sum de = 1.8513125624614318e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.83e-03 |
|       force |  2.81e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023568877454191975 cfl multiplier : 0.9999999999998407       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9915e+04 | 9216 |      1 | 3.081e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.55422767673508 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 99.88s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5165376219112702, dt = 0.0023568877454191975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.745225694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7383010840511007e-14,-5.079163899217071e-15,-7.304754812797973e-14)
    sum a = (-1.8691505420200955e-13,2.5395819496186302e-14,2.476737457946771e-13)
    sum e = 3.101383055500628e-09
    sum de = 1.8377057435068151e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.74e-03 |
|       force |  2.84e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023559639532018256 cfl multiplier : 0.9999999999998938       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7132e+04 | 9216 |      1 | 3.397e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.979641201316507 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 100.22s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5188945096566894, dt = 0.0023559639532018256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 289.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 4.731011284722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.694525664356859e-14,-5.019687006802629e-15,-7.246019179667078e-14)
    sum a = (-1.8472628321719992e-13,2.5098435034199284e-14,2.5086575679003453e-13)
    sum e = 3.1056966111598343e-09
    sum de = 1.8235918845377944e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.72e-03 |
|       force |  2.88e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023551663625419974 cfl multiplier : 0.9999999999999293       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.081e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.531671926305908 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 100.52s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5212504736098912, dt = 0.0023551663625419974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 322.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.717556423611112
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.651277384783017e-14,-4.9609263303944516e-15,-7.186560107332664e-14)
    sum a = (-1.8256386924048404e-13,2.4804631652390946e-14,2.5398622459677116e-13)
    sum e = 3.1099748730040095e-09
    sum de = 1.8089846948469025e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.71e-03 |
|       force |  2.92e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235447595227213 cfl multiplier : 0.9999999999999529         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.506475528715477 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 100.83s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5236056399724331, dt = 0.00235447595227213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 269.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.699544270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6085478030279354e-14,-4.902870399584765e-15,-7.126392200487288e-14)
    sum a = (-1.8042739015170174e-13,2.4514351997851105e-14,2.5703512416255324e-13)
    sum e = 3.1142169135796705e-09
    sum de = 1.7938977663549318e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.70e-03 |
|       force |  2.99e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023538723008110817 cfl multiplier : 0.9999999999999686       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.64851934645055 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 101.14s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5259601159247053, dt = 0.0023538723008110817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 267.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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: 4.689778645833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.566329013861236e-14,-4.845508473677969e-15,-7.065530486536975e-14)
    sum a = (-1.78316450692513e-13,2.422754236815321e-14,2.6001239240712265e-13)
    sum e = 3.1184217972075183e-09
    sum de = 1.7783445319249998e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.68e-03 |
|       force |  3.06e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352905648029268 cfl multiplier : 0.999999999999979         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0002e+04 | 9216 |      1 | 3.072e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.585825255261078 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 101.45s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5283139882255163, dt = 0.002352905648029268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 302.60 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.670355902777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.524621279560165e-14,-4.788840909022766e-15,-7.004001618412712e-14)
    sum a = (-1.7623106397986487e-13,2.3944204544820597e-14,2.6291740697741833e-13)
    sum e = 3.1225878152518653e-09
    sum de = 1.7623410723623376e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.64e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023510364997683794 cfl multiplier : 0.9999999999999861       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9878e+04 | 9216 |      1 | 3.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.461096372331053 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 101.76s (max_walltime = 101.97s)  [SPH][rank=0]
---------------- t = 0.5306668938735456, dt = 0.0023510364997683794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.654730902777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.483434049087937e-14,-4.732880543762986e-15,-6.941847015129898e-14)
    sum a = (-1.741717024548199e-13,2.3664402719560528e-14,2.6574896251309944e-13)
    sum e = 3.1267123704513965e-09
    sum de = 1.74590718665292e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.63e-03 |
|       force |  3.05e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023493098551047946 cfl multiplier : 0.9999999999999908       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.063e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.62926218697292 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 102.06s > 101.97s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 3):
   -> walltime = 102.063325569 >= 101.965351139
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000003.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (56.9%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000003.sham              [Shamrock Dump][rank=0]
              - took 1.35 ms, bandwidth = 2.57 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 102.063325569 -> 132.063325569

[Simulation] Evolve until next trigger(s) :
   -> t = 0.6 (current = 0.533017930373314)
   -> iter = None (current = 243)
   -> walltime = 132.063325569 (current = 102.06683131300001)

Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = 132.06s)      [SPH][rank=0]
---------------- t = 0.533017930373314, dt = 0.0023493098551047946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (0.8%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 283.29 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 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: 4.642903645833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4427578010877886e-14,-4.677614441390953e-15,-6.879081494942397e-14)
    sum a = (-1.7213789005414814e-13,2.338807220678188e-14,2.6850721191106254e-13)
    sum e = 3.13079479544927e-09
    sum de = 1.7290555933370886e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  2.95e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023477298486394723 cfl multiplier : 0.9999999999999938       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8403e+04 | 9216 |      1 | 3.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.06510476598824 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.15s (niter = 22) global walltime = 102.39s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.5353672402284189, dt = 0.0023477298486394723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 268.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.626085069444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4025833776073956e-14,-4.623030159166516e-15,-6.815719256218343e-14)
    sum a = (-1.7012916887949497e-13,2.3115150795628624e-14,2.7119229980483984e-13)
    sum e = 3.1348344348942222e-09
    sum de = 1.7117981471063544e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  2.88e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346297479873385 cfl multiplier : 0.9999999999999959        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8194e+04 | 9216 |      1 | 3.269e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.855960366268413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5377149700770584, dt = 0.002346297479873385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 278.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.610134548611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3629018103208387e-14,-4.569115511979389e-15,-6.751774282207643e-14)
    sum a = (-1.6814509051507127e-13,2.2845577560288205e-14,2.738043638881804e-13)
    sum e = 3.1388306553145157e-09
    sum de = 1.6941461049896312e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.84e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023448805878825934 cfl multiplier : 0.9999999999999973       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0130e+04 | 9216 |      1 | 3.059e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.614708176190778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5400612675569317, dt = 0.0023448805878825934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 282.29 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.594401041666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.32370655635451e-14,-4.515861610141686e-15,-6.687263994471572e-14)
    sum a = (-1.6618532781800568e-13,2.2579308050031255e-14,2.763433824434833e-13)
    sum e = 3.142782617857633e-09
    sum de = 1.676111179734288e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.82e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343292840898191 cfl multiplier : 0.9999999999999982        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8895e+04 | 9216 |      1 | 3.190e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.466646415643325 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5424061481448144, dt = 0.002343292840898191 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 320.26 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 4.579969618055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.284994237935952e-14,-4.4632638643380045e-15,-6.622210962741076e-14)
    sum a = (-1.6424971189658014e-13,2.231631932165793e-14,2.7880914875088353e-13)
    sum e = 3.1466892004765555e-09
    sum de = 1.6577061340393301e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.83e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023418522728859393 cfl multiplier : 0.9999999999999988       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9888e+04 | 9216 |      1 | 3.083e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.358092062314846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5447494409857125, dt = 0.0023418522728859393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 317.91 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.561306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.246756167569966e-14,-4.411310471015057e-15,-6.556629078233596e-14)
    sum a = (-1.6233780837850214e-13,2.205655235546171e-14,2.812018164529064e-13)
    sum e = 3.150549853400546e-09
    sum de = 1.6389410143495602e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.85e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340558179740225 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.0169e+04 | 9216 |      1 | 3.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.598193915643535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5470912932585985, dt = 0.002340558179740225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 277.12 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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: 4.543728298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.208983928821736e-14,-4.359989994911879e-15,-6.49053199335308e-14)
    sum a = (-1.6044919644088089e-13,2.1799949974583916e-14,2.835215318629303e-13)
    sum e = 3.1543640356792908e-09
    sum de = 1.6198254382990972e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.90e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023394065967620244 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.0122e+04 | 9216 |      1 | 3.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.53958456078237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5494318514383387, dt = 0.0023394065967620244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 300.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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: 4.530164930555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.171669358267825e-14,-4.3092913445336065e-15,-6.423933307713198e-14)
    sum a = (-1.585834679135126e-13,2.1546456722110235e-14,2.8576843622682496e-13)
    sum e = 3.1581312149531603e-09
    sum de = 1.600368758112214e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.94e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023383904421159585 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0066e+04 | 9216 |      1 | 3.065e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.475424498484035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5517712580351007, dt = 0.0023383904421159585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 295.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.507269965277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1348045865844426e-14,-4.259203827966938e-15,-6.356846668580434e-14)
    sum a = (-1.567402293297742e-13,2.129601914046669e-14,2.879426752443845e-13)
    sum e = 3.161850862337648e-09
    sum de = 1.5805801940854537e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  2.92e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023368285260811795 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.055e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.552558180332138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5541096484772167, dt = 0.0023368285260811795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 326.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.4892578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.098392593250461e-14,-4.209731493370647e-15,-6.289305191847012e-14)
    sum a = (-1.5491962966252875e-13,2.104865746695833e-14,2.9004379275938125e-13)
    sum e = 3.1655213848504436e-09
    sum de = 1.5604745962811824e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  2.93e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023353205783902577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9583e+04 | 9216 |      1 | 3.115e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.004116506834617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5564464770032979, dt = 0.0023353205783902577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.469075520833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0624266147976405e-14,-4.160865151348062e-15,-6.221325170497618e-14)
    sum a = (-1.5312133074018726e-13,2.0804325756184385e-14,2.920719455681645e-13)
    sum e = 3.1691422125524227e-09
    sum de = 1.5400619835973984e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.96e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023339336164298796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7622e+04 | 9216 |      1 | 3.336e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.19774217563355 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5587817975816881, dt = 0.0023339336164298796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   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.08 us    (0.3%)
   LB compute        : 291.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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: 4.453776041666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0268990929009945e-14,-4.112594532534985e-15,-6.152920697925783e-14)
    sum a = (-1.513449546457557e-13,2.0562972662926678e-14,2.9402735455500413e-13)
    sum e = 3.172712887539935e-09
    sum de = 1.5193516048272147e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.97e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002332663812020909 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9889e+04 | 9216 |      1 | 3.083e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.2499590095679 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.561115731198118, dt = 0.002332663812020909 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 269.20 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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: 4.435546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.991802700211532e-14,-4.064909681385161e-15,-6.084105811221588e-14)
    sum a = (-1.4959013500973313e-13,2.0324548405959188e-14,2.9591024003330246e-13)
    sum e = 3.176232960222138e-09
    sum de = 1.4983526154731542e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.96e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002331174198759836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0180e+04 | 9216 |      1 | 3.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.49948210252382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5634483950101389, dt = 0.002331174198759836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 299.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.417643229166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.957135304112309e-14,-4.01780770035799e-15,-6.014904372605154e-14)
    sum a = (-1.478567652057113e-13,2.0089038502368308e-14,2.977205713936098e-13)
    sum e = 3.1797014902848635e-09
    sum de = 1.4770770847299245e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.57e-03 |
|       force |  2.99e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002329767601191007 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.55356204312266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5657795692088987, dt = 0.002329767601191007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.5%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 270.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 4.399088541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.922890153341161e-14,-3.971279416620556e-15,-5.945331388577952e-14)
    sum a = (-1.4614450766671096e-13,1.9856397083653668e-14,2.994585933026715e-13)
    sum e = 3.1831180372293515e-09
    sum de = 1.4555343828837172e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.58e-03 |
|       force |  3.04e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002328533797927282 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.466516315458108 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5681093368100897, dt = 0.002328533797927282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 322.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.378363715277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.889059368899793e-14,-3.925314125127187e-15,-5.875398983660236e-14)
    sum a = (-1.444529684450214e-13,1.962657062604369e-14,3.0112461564231275e-13)
    sum e = 3.186482302040192e-09
    sum de = 1.4337327994440859e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.59e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023268977202801555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.517057810590863 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.570437870608017, dt = 0.0023268977202801555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 291.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 4.354817708333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.855643580915985e-14,-3.879912682017501e-15,-5.805136396029507e-14)
    sum a = (-1.4278217904554127e-13,1.9399563409953595e-14,3.027185599148412e-13)
    sum e = 3.189793165249357e-09
    sum de = 1.4116857860852995e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.60e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002325380372084685 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7690e+04 | 9216 |      1 | 3.328e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.168353641741938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5727647683282971, dt = 0.002325380372084685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 4.332356770833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.822635681054545e-14,-3.8350654293247424e-15,-5.734557369014377e-14)
    sum a = (-1.4113178405417324e-13,1.9175327146817723e-14,3.042407545581252e-13)
    sum e = 3.193050318313961e-09
    sum de = 1.3894018593298937e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  3.10e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023240493025019197 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.053e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.420111151021093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5750901487003819, dt = 0.0023240493025019197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 323.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.312608506944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.790027848431338e-14,-3.79076174094582e-15,-5.6636733335935205e-14)
    sum a = (-1.3950139242179884e-13,1.8953808703871716e-14,3.0569157092527825e-13)
    sum e = 3.1962535460384347e-09
    sum de = 1.3668885537837299e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.63e-03 |
|       force |  3.12e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002322903417837017 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.588703981108278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5774141980028838, dt = 0.002322903417837017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 267.08 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.287434895833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7578124778332112e-14,-3.746991283817868e-15,-5.5924955456663987e-14)
    sum a = (-1.3789062389187332e-13,1.8734956419219384e-14,3.070713784542691e-13)
    sum e = 3.1994026349043248e-09
    sum de = 1.3441531402011812e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.64e-03 |
|       force |  3.07e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023216586851643453 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.039e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.521298650337812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5797371014207209, dt = 0.0023216586851643453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 276.71 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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: 4.264865451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7259860643632593e-14,-3.703749295891574e-15,-5.5210437944128714e-14)
    sum a = (-1.362993032177338e-13,1.8518746479449957e-14,3.0838038852871205e-13)
    sum e = 3.2024969928447404e-09
    sum de = 1.3212053970402593e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.65e-03 |
|       force |  3.01e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023203209063103933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 9216 |      1 | 3.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.40380740061755 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5820587601058852, dt = 0.0023203209063103933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 311.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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: 4.238498263888888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6945449772593202e-14,-3.661030844118513e-15,-5.449337694418079e-14)
    sum a = (-1.3472724886304368e-13,1.8305154220544492e-14,3.0961884991474223e-13)
    sum e = 3.2055360726199186e-09
    sum de = 1.2980549247169121e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.66e-03 |
|       force |  2.97e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002319116824167793 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0314e+04 | 9216 |      1 | 3.040e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.47628531197428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5843790810121956, dt = 0.002319116824167793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 298.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.219075520833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6634825378373752e-14,-3.618826854287963e-15,-5.3773897846326614e-14)
    sum a = (-1.3317412689167367e-13,1.80941342718202e-14,3.1078715531412673e-13)
    sum e = 3.2085196514237564e-09
    sum de = 1.2747089325405695e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.61e-03 |
|       force |  2.94e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002318049812992354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6980e+04 | 9216 |      1 | 3.416e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.441312522896816 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.62s (niter = 18) global walltime = 109.25s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.5866981978363633, dt = 0.002318049812992354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 295.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.193467881944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.632792205408409e-14,-3.5771284396801975e-15,-5.305212302074928e-14)
    sum a = (-1.3163961027120699e-13,1.7885642198164695e-14,3.1188570056425763e-13)
    sum e = 3.2114475123938437e-09
    sum de = 1.2511743953467388e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.62e-03 |
|       force |  2.93e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023171204265737583 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.360477707361873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5890162476493557, dt = 0.0023171204265737583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 328.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.171115451388888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6024675767160516e-14,-3.5359269003067857e-15,-5.23281730519717e-14)
    sum a = (-1.3012337883571878e-13,1.7679634502328632e-14,3.129148832845185e-13)
    sum e = 3.21431944617641e-09
    sum de = 1.2274581680343206e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.64e-03 |
|       force |  2.93e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002316326419607181 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0254e+04 | 9216 |      1 | 3.046e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.383582051432555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5913333680759294, dt = 0.002316326419607181 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 286.44 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.147894965277779
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5725024192370163e-14,-3.495213768139612e-15,-5.160216767054111e-14)
    sum a = (-1.2862512096144878e-13,1.7476068840155497e-14,3.13875102413223e-13)
    sum e = 3.2171352473544072e-09
    sum de = 1.203567089622518e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.65e-03 |
|       force |  2.95e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002315660210490722 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.66858353920899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5936496944955366, dt = 0.002315660210490722 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 269.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 4.131510416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5428907344839043e-14,-3.454980893151402e-15,-5.087422749428675e-14)
    sum a = (-1.271445367249569e-13,1.7274904465715975e-14,3.1476675695904724e-13)
    sum e = 3.2198947080792513e-09
    sum de = 1.179508045285459e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.66e-03 |
|       force |  2.99e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023147046805608615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8837e+04 | 9216 |      1 | 3.196e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.08468828554641 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5959653547060273, dt = 0.0023147046805608615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 266.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.115559895833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5136319555576214e-14,-3.415227505098007e-15,-5.0144603024201596e-14)
    sum a = (-1.256815977784596e-13,1.7076137525781006e-14,3.1559010532460303e-13)
    sum e = 3.2225971341658874e-09
    sum de = 1.1552922811435593e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.68e-03 |
|       force |  3.04e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023138378656246492 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.697920191250457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5982800593865881, dt = 0.0017199406134118522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 267.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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: 4.1025390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.49218478070121e-14,-3.3860876060294337e-15,-4.9600853880723135e-14)
    sum a = (-1.2460923903485478e-13,1.6930438031213743e-14,3.161560320384095e-13)
    sum e = 3.2245536763297734e-09
    sum de = 1.137161081757947e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.69e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023132483189885374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9765e+04 | 9216 |      1 | 3.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.9977033765769 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 273                                                     [SPH][rank=0]
Info: time since start : 111.096294971 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 6):
   -> t = 0.6 >= 0.6
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.6 -> 0.7

[Simulation] Evolve until next trigger(s) :
   -> t = 0.7 (current = 0.6)
   -> iter = None (current = 272)
   -> walltime = 132.063325569 (current = 114.14158511800001)

Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = 132.06s)      [SPH][rank=0]
---------------- t = 0.6, dt = 0.0023132483189885374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.089192708333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4634517890963074e-14,-3.347048595953315e-15,-4.886901979092894e-14)
    sum a = (-1.2317258945531226e-13,1.6735242979547555e-14,3.168634060036112e-13)
    sum e = 3.2271711728630795e-09
    sum de = 1.1127248297753715e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.71e-03 |
|       force |  3.07e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023125259083295554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3572e+04 | 9216 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.30027533678886 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.30s (niter = 11) global walltime = 114.53s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.6023132483189885, dt = 0.0023125259083295554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 366.89 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.1%)
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: 4.074761284722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4351339750262822e-14,-3.3085736802932683e-15,-4.8135446789319666e-14)
    sum a = (-1.217566987511059e-13,1.6542868401890523e-14,3.1750161202007584e-13)
    sum e = 3.22971617389921e-09
    sum de = 1.0881171780873117e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.72e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023118799723806853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3911e+04 | 9216 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.59937439880183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.604625774227318, dt = 0.0023118799723806853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 348.06 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.054470486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4071490018886443e-14,-3.270550989746807e-15,-4.7400683237295124e-14)
    sum a = (-1.2035745009393884e-13,1.635275494843316e-14,3.180731968663936e-13)
    sum e = 3.23220336281885e-09
    sum de = 1.0633811486508687e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.74e-03 |
|       force |  3.10e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023110625739662114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.036e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.415559305558403 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6069376541996987, dt = 0.0023110625739662114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 316.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 4.032660590277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3794953867948856e-14,-3.2329785095474082e-15,-4.666493545847987e-14)
    sum a = (-1.1897476934000757e-13,1.616489254790752e-14,3.1857856542422116e-13)
    sum e = 3.2346323492568783e-09
    sum de = 1.0385267287808045e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.76e-03 |
|       force |  3.08e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023098288213502394 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0566e+04 | 9216 |      1 | 3.015e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.59340209153811 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6092487167736649, dt = 0.0023098288213502394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 299.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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: 4.013237847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3521740247584903e-14,-3.195857455728185e-15,-4.5928489537002786e-14)
    sum a = (-1.1760870123716422e-13,1.5979287278403504e-14,3.190181253005097e-13)
    sum e = 3.237002480956209e-09
    sum de = 1.0135668097012165e-09
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.77e-03 |
|       force |  3.04e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023087293435740397 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9544e+04 | 9216 |      1 | 3.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.65723014411673 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6115585455950151, dt = 0.0023087293435740397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 304.14 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.9946831597222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.32517912797179e-14,-3.1591799644988617e-15,-4.5191455375950286e-14)
    sum a = (-1.16258956398658e-13,1.5795899822657975e-14,3.1939243227673143e-13)
    sum e = 3.239313735393512e-09
    sum de = 9.88508364946489e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.79e-03 |
|       force |  3.02e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023077706368846585 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0524e+04 | 9216 |      1 | 3.019e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.52822663550227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6138672749385892, dt = 0.0023077706368846585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 322.78 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.9753689236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2985050371623297e-14,-3.1229383467057832e-15,-4.445393881238606e-14)
    sum a = (-1.1492525185752487e-13,1.5614691733693303e-14,3.19702042010165e-13)
    sum e = 3.241566086228416e-09
    sum de = 9.633581768566287e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.81e-03 |
|       force |  3.03e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023069564032418637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.5633413392506 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6161750455754739, dt = 0.0023069564032418637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.56 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.9554036458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2721461768045506e-14,-3.0871250269792735e-15,-4.3716042885294085e-14)
    sum a = (-1.1360730884022442e-13,1.5435625134623838e-14,3.199475081274766e-13)
    sum e = 3.2437595155637736e-09
    sum de = 9.381228603518276e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.83e-03 |
|       force |  3.06e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002306287500319783 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8117e+04 | 9216 |      1 | 3.278e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.338188626831027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6184820019787157, dt = 0.002306287500319783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 284.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.937174479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.246097087026333e-14,-3.051732587089807e-15,-4.297786880673937e-14)
    sum a = (-1.1230485435076861e-13,1.525866293582229e-14,3.2012937761197113e-13)
    sum e = 3.245894010268915e-09
    sum de = 9.128089192606164e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.86e-03 |
|       force |  3.11e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002305761953333426 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.004e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.63937683968011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6207882894790355, dt = 0.002305761953333426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 269.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.9182942708333326
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2203524527181565e-14,-3.0167538054874116e-15,-4.2239516946042504e-14)
    sum a = (-1.110176226361344e-13,1.508376902716188e-14,3.2024819629584396e-13)
    sum e = 3.247969559059286e-09
    sum de = 8.874227878009519e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.88e-03 |
|       force |  3.19e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002305375042132992 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.023e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.459333809787317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.623094051432369, dt = 0.002305375042132992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 296.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.9013671875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1949071295675768e-14,-2.9821816926915086e-15,-4.150108776319142e-14)
    sum a = (-1.0974535647875955e-13,1.491090846305108e-14,3.2030450756789595e-13)
    sum e = 3.249986150370601e-09
    sum de = 8.619708863179746e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.90e-03 |
|       force |  3.19e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002304979743672639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.46080240625881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.625399426474502, dt = 0.002304979743672639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 287.56 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.8819444444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1697576997352847e-14,-2.9480116049399212e-15,-4.0762727452136066e-14)
    sum a = (-1.0848788498645086e-13,1.4740058024777835e-14,3.202988547184061e-13)
    sum e = 3.2519436492811562e-09
    sum de = 8.364612184750472e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.92e-03 |
|       force |  3.15e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00230437308713937 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.780866872378684 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.51s (niter = 11) global walltime = 117.97s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.6277044062181746, dt = 0.00230437308713937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 293.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.8599175347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.144902965806885e-14,-2.9142419153242386e-15,-4.00246459063723e-14)
    sum a = (-1.0724514829089049e-13,1.4571209576351706e-14,3.2023180530246196e-13)
    sum e = 3.2538417736243066e-09
    sum de = 8.109040238177102e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.95e-03 |
|       force |  3.12e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002303868271830358 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9421e+04 | 9216 |      1 | 3.132e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.48360681558763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.630008779305314, dt = 0.002303868271830358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 273.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
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.8371310763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1203382828110125e-14,-2.880866312809006e-15,-3.928695126390622e-14)
    sum a = (-1.0601691414008129e-13,1.4404331564383195e-14,3.201039426343291e-13)
    sum e = 3.255680542887072e-09
    sum de = 7.853061037879039e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  3.97e-03 |
|       force |  3.11e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002303464600345082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0696e+04 | 9216 |      1 | 3.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.624605676256078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6323126475771443, dt = 0.002303464600345082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 264.04 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.8148871527777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0960591464196662e-14,-2.847878677436748e-15,-3.8549750453004723e-14)
    sum a = (-1.0480295732047439e-13,1.4239393386873572e-14,3.199158574777464e-13)
    sum e = 3.257459974499395e-09
    sum de = 7.596742985096335e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.00e-03 |
|       force |  3.12e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002303160103143281 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8182e+04 | 9216 |      1 | 3.270e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.357977966715023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6346161121774894, dt = 0.002303160103143281 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 268.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.794813368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.07206116274846e-14,-2.81527303932244e-15,-3.781314963741507e-14)
    sum a = (-1.0360305813660982e-13,1.407636519695965e-14,3.1966815218941186e-13)
    sum e = 3.2591800927025716e-09
    sum de = 7.340155212240535e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.03e-03 |
|       force |  3.14e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302951601792161 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6970e+04 | 9216 |      1 | 3.417e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.264515151399493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6369192722806326, dt = 0.002302951601792161 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 269.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
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.7748480902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0483400578762575e-14,-2.7830435915557983e-15,-3.707725460678565e-14)
    sum a = (-1.024170028937757e-13,1.3915217957903822e-14,3.1936143701753786e-13)
    sum e = 3.2608409280422536e-09
    sum de = 7.083367807034785e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.06e-03 |
|       force |  3.19e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302834773579067 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0692e+04 | 9216 |      1 | 3.003e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.610581570642427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6392222238824248, dt = 0.002302834773579067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 273.20 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.7550998263888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0248916857004078e-14,-2.7511847009065556e-15,-3.6342171159361837e-14)
    sum a = (-1.0124458428502506e-13,1.3755923505103122e-14,3.1899632992099647e-13)
    sum e = 3.2624425171774395e-09
    sum de = 6.826451909669697e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.09e-03 |
|       force |  3.23e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023028042528082937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.983e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.789307359823404 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6415250586560038, dt = 0.0023028042528082937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.02 us   (6.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 319.77 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.736436631944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0017120340909314e-14,-2.719690916160118e-15,-3.560800544485515e-14)
    sum a = (-1.0008560170542992e-13,1.3598454580417073e-14,3.1857345572926123e-13)
    sum e = 3.263984902764502e-09
    sum de = 6.569480106585806e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.12e-03 |
|       force |  3.23e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023026893743163922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.098e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.757610608444534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6438278629088121, dt = 0.0023026893743163922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 292.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.7210286458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9787988744346727e-14,-2.6885592093457864e-15,-3.4874916631646467e-14)
    sum a = (-9.893994372206025e-14,1.3442796046448405e-14,3.180934825966057e-13)
    sum e = 3.2654680250647555e-09
    sum de = 6.312544520169687e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.15e-03 |
|       force |  3.23e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302238069021338 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.652521788276754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6461305522831285, dt = 0.002302238069021338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.00 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
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.7001953124999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.956152448659477e-14,-2.657789909159825e-15,-3.4143142321013966e-14)
    sum a = (-9.78076224331156e-14,1.3288949545670885e-14,3.175571608567364e-13)
    sum e = 3.266891697092438e-09
    sum de = 6.05576581955594e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.18e-03 |
|       force |  3.23e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002301920866333261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.69233415235816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6484327903521498, dt = 0.002301920866333261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 303.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.689344618055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.933768251621885e-14,-2.6273768945442252e-15,-3.3412768236351424e-14)
    sum a = (-9.668841258152746e-14,1.3136884472748599e-14,3.169651594900857e-13)
    sum e = 3.2682560806693165e-09
    sum de = 5.799212004085699e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.22e-03 |
|       force |  3.24e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023017406852043356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0791e+04 | 9216 |      1 | 2.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.687264268234994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6507347112184831, dt = 0.0023017406852043356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 324.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.673611111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9116419029447555e-14,-2.5973142139586808e-15,-3.268387800311651e-14)
    sum a = (-9.558209514809923e-14,1.2986571069249846e-14,3.163181474478269e-13)
    sum e = 3.2695613301620777e-09
    sum de = 5.542950731608735e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.25e-03 |
|       force |  3.24e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023016974437837802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0791e+04 | 9216 |      1 | 2.993e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.685114550563018 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.51s (niter = 8) global walltime = 121.37s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.6530364519036875, dt = 0.0023016974437837802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 264.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.6567925347222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8897691193298143e-14,-2.5675960477631227e-15,-3.1956553958687947e-14)
    sum a = (-9.448845596595667e-14,1.2837980239407565e-14,3.1561679110880427e-13)
    sum e = 3.270807604692497e-09
    sum de = 5.28704934415859e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.29e-03 |
|       force |  3.25e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023015782045199998 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8371e+04 | 9216 |      1 | 3.248e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.5087439382344 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6553381493474714, dt = 0.0023015782045199998 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 291.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.638780381944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8681477235722965e-14,-2.5382194378206887e-15,-3.123094438635204e-14)
    sum a = (-9.340738617829685e-14,1.2691097189409308e-14,3.1486182745733704e-13)
    sum e = 3.271994954614747e-09
    sum de = 5.031598538873333e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.33e-03 |
|       force |  3.25e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002301547946257615 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.74358706167767 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6576397275519914, dt = 0.002301547946257615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 267.70 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.6%)
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.620985243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8467739741229672e-14,-2.5091793005620117e-15,-3.0507143597942e-14)
    sum a = (-9.233869870652533e-14,1.2545896501786424e-14,3.140539457953967e-13)
    sum e = 3.273123547056645e-09
    sum de = 4.776669851310939e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.37e-03 |
|       force |  3.26e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002301635458335423 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.971e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.888755013321752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.659941275498249, dt = 0.002301635458335423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 300.14 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.6046006944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8256439535837572e-14,-2.4804703134892333e-15,-2.9785235589666804e-14)
    sum a = (-9.128219767880434e-14,1.2402351566985536e-14,3.131938215681579e-13)
    sum e = 3.2741935673044908e-09
    sum de = 4.5223310576427e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.41e-03 |
|       force |  3.27e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002301835821968776 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8169e+04 | 9216 |      1 | 3.272e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.32592548427143 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6622429109565844, dt = 0.002301835821968776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 317.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.588216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8047538743425778e-14,-2.4520873304316916e-15,-2.906530467817577e-14)
    sum a = (-9.023769371636112e-14,1.2260436651306877e-14,3.122821305998832e-13)
    sum e = 3.2752052039633247e-09
    sum de = 4.2686501433301627e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.45e-03 |
|       force |  3.28e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023021421476602704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7443e+04 | 9216 |      1 | 3.358e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.675691806485958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6645447467785531, dt = 0.0023021421476602704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 350.29 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5711805555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7841000883731756e-14,-2.424025394886507e-15,-2.8347436104824772e-14)
    sum a = (-8.920500441878371e-14,1.2120126974712315e-14,3.113195439356541e-13)
    sum e = 3.2761586497513776e-09
    sum de = 4.015695208442257e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.49e-03 |
|       force |  3.29e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302029834570259 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8171e+04 | 9216 |      1 | 3.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.333693090331035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6668468889262134, dt = 0.002302029834570259 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 321.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5541449652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.763683700094611e-14,-2.396286007402112e-15,-2.7631877232246054e-14)
    sum a = (-8.818418500445034e-14,1.198143003666682e-14,3.1030696514299456e-13)
    sum e = 3.2770538920710705e-09
    sum de = 3.7635914796612264e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.54e-03 |
|       force |  3.30e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023019184042648673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9138e+04 | 9216 |      1 | 3.163e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.201452088510816 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6691489187607836, dt = 0.0023019184042648673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 308.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5394965277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7435019180892565e-14,-2.3688653753357343e-15,-2.6918741411513248e-14)
    sum a = (-8.717509590423788e-14,1.1844326875871531e-14,3.092451444488686e-13)
    sum e = 3.2778911542565284e-09
    sum de = 3.5124168734151823e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.58e-03 |
|       force |  3.31e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023019120451035504 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1173e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.03038636275368 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.89s (niter = 6) global walltime = 123.89s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.6714508371650485, dt = 0.0023019120451035504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.5209418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7235511197983304e-14,-2.3417585767785515e-15,-2.6208108400923973e-14)
    sum a = (-8.617755599061007e-14,1.1708792883148987e-14,3.0813478407838634e-13)
    sum e = 3.2786707018690163e-09
    sum de = 3.2622377396525346e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.63e-03 |
|       force |  3.32e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302011450646938 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1185e+04 | 9216 |      1 | 2.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.040799373512222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.673752749210152, dt = 0.002302011450646938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 304.11 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.503146701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7038277601875283e-14,-2.314960795152742e-15,-2.5500056575587482e-14)
    sum a = (-8.51913880089975e-14,1.157480397584342e-14,3.06976578270011e-13)
    sum e = 3.2793928050146313e-09
    sum de = 3.013120184162962e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.68e-03 |
|       force |  3.33e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002302215278045884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9262e+04 | 9216 |      1 | 3.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.313240449977467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.676054760660799, dt = 0.002302215278045884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 307.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.489474826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6843283771836157e-14,-2.2884673265989895e-15,-2.4794663508608575e-14)
    sum a = (-8.421641885877221e-14,1.1442336632393362e-14,3.057712214653246e-13)
    sum e = 3.2800577407513333e-09
    sum de = 2.765130259789771e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.72e-03 |
|       force |  3.34e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023025201924759923 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.954e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.05256414127519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6783569759388448, dt = 0.0023025201924759923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.61 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 300.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.470703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6650496061312203e-14,-2.262273599624743e-15,-2.4092006592332893e-14)
    sum a = (-8.325248030546477e-14,1.1311367998341618e-14,3.045194072687896e-13)
    sum e = 3.2806657928094247e-09
    sum de = 2.5183343115257643e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.76e-03 |
|       force |  3.35e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023029209415530248 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1299e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.151247583183 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.6806594961313208, dt = 0.0023029209415530248 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 309.29 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.4575737847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6459881924972006e-14,-2.236375192346711e-15,-2.3392163635954734e-14)
    sum a = (-8.229940962484972e-14,1.1181875960881895e-14,3.0322182285394633e-13)
    sum e = 3.2812172516848614e-09
    sum de = 2.2727992834960065e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.80e-03 |
|       force |  3.37e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002303410433035206 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.561675686900102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6829624170728739, dt = 0.002303410433035206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4440104166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6271410029423885e-14,-2.2107678475596933e-15,-2.2695213442834832e-14)
    sum a = (-8.135705014680369e-14,1.1053839237787886e-14,3.0187915278265127e-13)
    sum e = 3.281712414955544e-09
    sum de = 2.0285927602049297e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.84e-03 |
|       force |  3.38e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023037947667602175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9413e+04 | 9216 |      1 | 3.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.465296414233993 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.56s (niter = 5) global walltime = 125.71s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.685265827505909, dt = 0.0023037947667602175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 330.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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.4302300347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6085065403384033e-14,-2.1854495311325464e-15,-2.2001292190574635e-14)
    sum a = (-8.042532701740757e-14,1.0927247655834754e-14,3.004921988857079e-13)
    sum e = 3.2821515496145594e-09
    sum de = 1.7858026018089472e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.88e-03 |
|       force |  3.39e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002303991002074468 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.684314727076156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6875696222726693, dt = 0.002303991002074468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.5%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 265.34 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.4174262152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.590083942303173e-14,-2.160419071368274e-15,-2.1310558496721702e-14)
    sum a = (-7.950419711549873e-14,1.0802095356704278e-14,2.9906182552107656e-13)
    sum e = 3.2825349411855925e-09
    sum de = 1.5445245917117425e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.93e-03 |
|       force |  3.40e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023042709328178054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1335e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.20095917794945 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6898736132747437, dt = 0.0023042709328178054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 341.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.406141493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5718701350083995e-14,-2.135672291909758e-15,-2.0623086808736446e-14)
    sum a = (-7.859350675039617e-14,1.0678361459659026e-14,2.9758874728948436e-13)
    sum e = 3.282862956330672e-09
    sum de = 1.3048247815839653e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  4.97e-03 |
|       force |  3.41e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023046087812541613 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.12396241011804 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6921778842075615, dt = 0.0023046087812541613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 264.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.3958333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.553862330294538e-14,-2.1112054045316867e-15,-1.9938958354208473e-14)
    sum a = (-7.769311651434072e-14,1.0556027023193065e-14,2.9607370338837613e-13)
    sum e = 3.2831359596181367e-09
    sum de = 1.0667719713954986e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.02e-03 |
|       force |  3.42e-02 |
| dust1_fluid |  2.30e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023049240619687147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.302197572773096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6944824929888157, dt = 0.0023049240619687147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 271.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.383463541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5360584092864762e-14,-2.087015530355208e-15,-1.9258276742890976e-14)
    sum a = (-7.680292046428876e-14,1.0435077651854467e-14,2.9451748994954307e-13)
    sum e = 3.283354319287739e-09
    sum de = 8.304424105530314e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.06e-03 |
|       force |  3.44e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023053104518003364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1464e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3292605570075 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 127.20s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.6967874170507844, dt = 0.0023053104518003364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 285.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3720703124999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.518455543473754e-14,-2.0630988263370713e-15,-1.8581115971972506e-14)
    sum a = (-7.592277717465459e-14,1.0315494131775296e-14,2.9292084577607244e-13)
    sum e = 3.2835184331271734e-09
    sum de = 5.959015812527808e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.11e-03 |
|       force |  3.45e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023057634629430964 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.998e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.6840332287392 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6990927275025848, dt = 0.0009072724974151791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.1%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 264.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3637152777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5116687288842446e-14,-2.0538777007834235e-15,-1.8317197324930097e-14)
    sum a = (-7.558343644455301e-14,1.0269388502919279e-14,2.922894852688889e-13)
    sum e = 3.283541814958032e-09
    sum de = 5.052362429970049e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.13e-03 |
|       force |  3.46e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023059584486338457 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.164705723585909 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 317                                                     [SPH][rank=0]
Info: time since start : 127.790630706 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 7):
   -> t = 0.7 >= 0.7
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.7 -> 0.7999999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 0.7999999999999999 (current = 0.7)
   -> iter = None (current = 316)
   -> walltime = 132.063325569 (current = 130.821959448)

Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = 132.06s)      [SPH][rank=0]
---------------- t = 0.7, dt = 0.0023059584486338457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 293.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3603515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.494254896225133e-14,-2.030217832787576e-15,-1.7643476324941532e-14)
    sum a = (-7.471274481126313e-14,1.0151089163714316e-14,2.9062978455030006e-13)
    sum e = 3.283657754029157e-09
    sum de = 2.7215713199093266e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.18e-03 |
|       force |  3.47e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023064947801838603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8937e+04 | 9216 |      1 | 3.185e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.065189836022505 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 131.14s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.7023059584486337, dt = 0.0023064947801838603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 299.37 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3525390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.477122829569521e-14,-2.0069407952990766e-15,-1.697505384435531e-14)
    sum a = (-7.385614147937721e-14,1.003470397553875e-14,2.88939428741402e-13)
    sum e = 3.2836935438558573e-09
    sum de = 4.217013383023443e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.23e-03 |
|       force |  3.49e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023070826771974472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1257e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.161767415623466 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 131.44s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.7046124532288176, dt = 0.0023070826771974472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3411458333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4601823946640633e-14,-1.983924124500455e-15,-1.631039609197442e-14)
    sum a = (-7.300911973283831e-14,9.919620623335013e-15,2.872111175793099e-13)
    sum e = 3.2836766543640285e-09
    sum de = -1.8581214570674562e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.51e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023077143544571192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0238e+04 | 9216 |      1 | 3.048e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.25087613178341 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 131.74s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.7069195359060151, dt = 0.0023077143544571192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 279.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3293185763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.443431682762658e-14,-1.9611652270012265e-15,-1.5649588551546592e-14)
    sum a = (-7.217158413849939e-14,9.805826135137824e-15,2.854456460555402e-13)
    sum e = 3.2836073790565524e-09
    sum de = -4.117170483844107e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.52e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023083813741547926 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1442e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.343785559973597 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 132.03s (max_walltime = 132.06s)  [SPH][rank=0]
---------------- t = 0.7092272502604722, dt = 0.0023083813741547926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 278.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3171657986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4268683683514583e-14,-1.938660943179852e-15,-1.4992708240848687e-14)
    sum a = (-7.134341841710235e-14,9.693304715796748e-15,2.8364376652016976e-13)
    sum e = 3.2834861750607165e-09
    sum de = -6.354781167660452e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.54e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023087937527845673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.098e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.820702599730023 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 132.35s > 132.06s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 4):
   -> walltime = 132.34530597 >= 132.063325569
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000004.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (56.1%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000004.sham              [Shamrock Dump][rank=0]
              - took 1.38 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 132.34530597 -> 162.34530597

[Simulation] Evolve until next trigger(s) :
   -> t = 0.7999999999999999 (current = 0.711535631634627)
   -> iter = None (current = 321)
   -> walltime = 162.34530597 (current = 132.34923217600002)

Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = 162.35s)      [SPH][rank=0]
---------------- t = 0.711535631634627, dt = 0.0023087937527845673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (0.7%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 321.33 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.307725694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4104922305933006e-14,-1.916410972981882e-15,-1.4339912997268817e-14)
    sum a = (-7.052461152908072e-14,9.582054865316384e-15,2.8180646553254133e-13)
    sum e = 3.28331352977689e-09
    sum de = -8.570015399757212e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.56e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023092129164711123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9669e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.7579184159637 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 7.15s (niter = 23) global walltime = 132.66s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.7138444253874116, dt = 0.0023092129164711123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.7%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 374.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2982855902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3943011190175281e-14,-1.894412394600597e-15,-1.3691282841633375e-14)
    sum a = (-6.97150559512384e-14,9.472061972943517e-15,2.799345242932656e-13)
    sum e = 3.28308995548486e-09
    sum de = -1.0762202166687047e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.58e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023096870811018673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.235609617464007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7161536383038827, dt = 0.0023096870811018673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 301.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.288194444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3782925944185077e-14,-1.8726618939346e-15,-1.3046883042768493e-14)
    sum a = (-6.891462972031156e-14,9.363309469952783e-15,2.780286783005601e-13)
    sum e = 3.2828159679191305e-09
    sum de = -1.2930718404054872e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  3.60e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023101794802269145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1357e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.29135368564344 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7184633253849846, dt = 0.0023101794802269145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 386.68 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2794053819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3624645147780087e-14,-1.8511565606551594e-15,-1.2406787849172723e-14)
    sum a = (-6.81232257394553e-14,9.255782803037457e-15,2.7608969192738756e-13)
    sum e = 3.2824920974177644e-09
    sum de = -1.5074910254242822e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.25e-03 |
|       force |  3.62e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002310704613590557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1300e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.245447086688593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7207735048652115, dt = 0.002310704613590557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 326.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.272786458333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3468146638390067e-14,-1.8298933835795305e-15,-1.1771065827542123e-14)
    sum a = (-6.734073319248146e-14,9.149466918114012e-15,2.741183078148764e-13)
    sum e = 3.282118887407121e-09
    sum de = -1.7194141913466136e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.25e-03 |
|       force |  3.64e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002310870235413956 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7315e+04 | 9216 |      1 | 3.374e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.655121928625093 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.723084209478802, dt = 0.002310870235413956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 304.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.2647569444444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3313434996993937e-14,-1.808872985112163e-15,-1.113989163220336e-14)
    sum a = (-6.656717498491193e-14,9.044364925805906e-15,2.721156071329448e-13)
    sum e = 3.28169696027308e-09
    sum de = -1.9287422985385647e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.26e-03 |
|       force |  3.66e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023110262894610128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1395e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33971852806814 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.725395079714216, dt = 0.0023110262894610128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 300.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2588975694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3160490301907034e-14,-1.7880926585297216e-15,-1.0513339301048323e-14)
    sum a = (-6.580245151022603e-14,8.940463292341044e-15,2.700823655647848e-13)
    sum e = 3.281226927291478e-09
    sum de = -2.135410885314964e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.26e-03 |
|       force |  3.69e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023112173834915024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1404e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.349402686180795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.727706106003677, dt = 0.0023112173834915024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.2526041666666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3009290180127372e-14,-1.7675493640549419e-15,-9.891469680148912e-15)
    sum a = (-6.504645090178985e-14,8.837746819976926e-15,2.6801931557935286e-13)
    sum e = 3.2807093971306872e-09
    sum de = -2.3393599596557896e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.26e-03 |
|       force |  3.71e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002311446711048756 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9295e+04 | 9216 |      1 | 3.146e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.447643607158984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7300173233871685, dt = 0.002311446711048756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 304.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2440321180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2859812415998789e-14,-1.7472400832828387e-15,-9.274341393148958e-15)
    sum a = (-6.429906207954096e-14,8.736200416197623e-15,2.6592718196236593e-13)
    sum e = 3.2801449884767174e-09
    sum de = -2.5405306681551294e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.27e-03 |
|       force |  3.74e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023117165050228743 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.327273452784695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7323287700982173, dt = 0.0023117165050228743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 266.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.232530381944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2712034987650228e-14,-1.727161824139982e-15,-8.662011065157085e-15)
    sum a = (-6.356017493921878e-14,8.63580912065925e-15,2.638066698181321e-13)
    sum e = 3.279534330637603e-09
    sum de = -2.738864689897271e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.27e-03 |
|       force |  3.76e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002311920118305672 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9702e+04 | 9216 |      1 | 3.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.821413728244153 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7346404866032401, dt = 0.002311920118305672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 288.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.2252604166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2565942989283653e-14,-1.7073125614039853e-15,-8.054562129321338e-15)
    sum a = (-6.282971494665831e-14,8.536562807096968e-15,2.616585806638707e-13)
    sum e = 3.278878093128898e-09
    sum de = -2.934295920348378e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  3.79e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023120280963782546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9816e+04 | 9216 |      1 | 3.091e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.926921087478387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7369524067215458, dt = 0.0023120280963782546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 277.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.20 us    (1.7%)
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.2197265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2421523305615376e-14,-1.6876905131216117e-15,-7.452083244434203e-15)
    sum a = (-6.210761652744785e-14,8.438452565125427e-15,2.594837348315607e-13)
    sum e = 3.2781769755884073e-09
    sum de = -3.126757561195503e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.29e-03 |
|       force |  3.82e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002312166854464179 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1329e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.294743772189385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.739264434817924, dt = 0.002312166854464179 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 315.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2133246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2278754889187607e-14,-1.6682928196151562e-15,-6.85462770580746e-15)
    sum a = (-6.139377444540719e-14,8.341464097575695e-15,2.572828183860072e-13)
    sum e = 3.2774316598871795e-09
    sum de = -3.316194833886656e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.29e-03 |
|       force |  3.84e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002312310406760468 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8609e+04 | 9216 |      1 | 3.221e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.83940361548429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7415766016723883, dt = 0.002312310406760468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.213761868662794e-14,-1.649116892135239e-15,-6.262254410421509e-15)
    sum a = (-6.06880934326702e-14,8.24558446115151e-15,2.5505654424011395e-13)
    sum e = 3.2766428444934356e-09
    sum de = -3.5025519384463547e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.29e-03 |
|       force |  3.87e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023124768192811953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.253157961104115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7438889120791488, dt = 0.0023124768192811953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 297.76 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1998094754133077e-14,-1.6301600209480809e-15,-5.6750159826912396e-15)
    sum a = (-5.99904737715829e-14,8.150800103866532e-15,2.528056031200827e-13)
    sum e = 3.2758112346938996e-09
    sum de = -3.6857754264757827e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.29e-03 |
|       force |  3.90e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023126656767103442 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.408094186352027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7462013888984299, dt = 0.0023126656767103442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1930338541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1860163459159978e-14,-1.611419538624031e-15,-5.092963766042624e-15)
    sum a = (-5.930081729566078e-14,8.057097693355538e-15,2.5053068371185806e-13)
    sum e = 3.2749375467017384e-09
    sum de = -3.865813102630761e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  3.93e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023128763861125987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33500753547358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7485140545751402, dt = 0.0023128763861125987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 281.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1824001736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1723805471589271e-14,-1.59289281880292e-15,-4.5161478277013455e-15)
    sum a = (-5.861902735820614e-14,7.964464093956045e-15,2.482324791008466e-13)
    sum e = 3.2740225078419483e-09
    sum de = -4.042613924815604e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  3.96e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023131081949950023 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1303e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.28120755432878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7508269309612527, dt = 0.0023131081949950023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 297.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (45.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.174587673611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1589001766947983e-14,-1.5745772766707044e-15,-3.9446169776191456e-15)
    sum a = (-5.794500883470352e-14,7.872886384299487e-15,2.4591168340519417e-13)
    sum e = 3.273066856474323e-09
    sum de = -4.2161279881035915e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  3.99e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002313360213457251 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1339e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31619855895561 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7531400391562477, dt = 0.002313360213457251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.167100694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1455733627826708e-14,-1.5564703691195773e-15,-3.3784187989728747e-15)
    sum a = (-5.727866813929991e-14,7.782351845681882e-15,2.4356898511144905e-13)
    sum e = 3.2720713419100676e-09
    sum de = -4.386306408385962e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  4.02e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00231363143051652 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.358112904900928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.755453399369705, dt = 0.00231363143051652 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 334.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 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.159939236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1323982643947984e-14,-1.5385695947855917e-15,-2.8175996920424077e-15)
    sum a = (-5.661991322021694e-14,7.692847973400768e-15,2.412050744030959e-13)
    sum e = 3.271036724361386e-09
    sum de = -4.553101436500378e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.28e-03 |
|       force |  4.06e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002313920739323216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1336e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.319875429613976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7577670308002216, dt = 0.002313920739323216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 279.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1528862847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1193730710532082e-14,-1.5208724938022028e-15,-2.262204877028047e-15)
    sum a = (-5.5968653552499936e-14,7.604362468489616e-15,2.388206376708099e-13)
    sum e = 3.2699637748419404e-09
    sum de = -4.716466457526876e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.27e-03 |
|       force |  4.09e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023142269587579853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.254182145854084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7600809515395448, dt = 0.0023142269587579853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 268.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1458333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1064960025261118e-14,-1.5033766473951557e-15,-1.7122784178269043e-15)
    sum a = (-5.532480012647874e-14,7.516883236791645e-15,2.3641635188439274e-13)
    sum e = 3.268853275073084e-09
    sum de = -4.87635627260867e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.25e-03 |
|       force |  4.13e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023144496947688745 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1510e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48502987598249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7623951784983027, dt = 0.0023144496947688745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.10 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.093765856997313e-14,-1.4860804226808081e-15,-1.167886695857001e-15)
    sum a = (-5.4688292848719365e-14,7.430402113772959e-15,2.33992981032031e-13)
    sum e = 3.267706065399467e-09
    sum de = -5.032720184731564e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.24e-03 |
|       force |  4.17e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002314512941763697 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1404e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39206695270353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7647096281930716, dt = 0.002314512941763697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 298.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.1340060763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0811818390449477e-14,-1.4689827389299e-15,-6.291112979196786e-16)
    sum a = (-5.405909195223731e-14,7.344913695125213e-15,2.3155136520846305e-13)
    sum e = 3.2665230419338746e-09
    sum de = -5.185504680321362e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.23e-03 |
|       force |  4.21e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023146218608889723 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1231e+04 | 9216 |      1 | 2.951e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.235853578596238 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.40s (niter = 18) global walltime = 139.55s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.7670241411348353, dt = 0.0023146218608889723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.72 us    (0.5%)
   LB compute        : 305.95 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.4%)
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.127061631944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0687420181246022e-14,-1.452080973150595e-15,-9.598302181932074e-17)
    sum a = (-5.343710090695437e-14,7.260404866573275e-15,2.2909211977483063e-13)
    sum e = 3.2653050156527423e-09
    sum de = -5.334672496137583e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.22e-03 |
|       force |  4.25e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002314778894800019 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1358e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35205466412543 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7693387629957242, dt = 0.002314778894800019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 292.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.12109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.056444494490255e-14,-1.435372544189245e-15,4.314684704064264e-16)
    sum a = (-5.282222472461866e-14,7.176862721294245e-15,2.2661585040366245e-13)
    sum e = 3.2640527990331687e-09
    sum de = -5.480187817792006e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.28e-02 |
| dust1_fluid |  2.31e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002314985539651696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9225e+04 | 9216 |      1 | 3.153e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.4258702145189 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7716535418905243, dt = 0.002314985539651696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 299.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.115885416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0442873909697593e-14,-1.418854901566655e-15,9.532148791019855e-16)
    sum a = (-5.2214369548017665e-14,7.0942745073628624e-15,2.2412316392144502e-13)
    sum e = 3.262767209838159e-09
    sum de = -5.622016549021621e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.32e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023152423151217563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1411e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.405080722300877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.773968527430176, dt = 0.0023152423151217563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.113498263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.032268857983446e-14,-1.4025255322919834e-15,1.4692290454279844e-15)
    sum a = (-5.161344289896678e-14,7.012627662435353e-15,2.2161465277014087e-13)
    sum e = 3.2614490712754347e-09
    sum de = -5.76012630706774e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.36e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023155487739696997 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9249e+04 | 9216 |      1 | 3.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.452973180055327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7762837697452977, dt = 0.0023155487739696997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 292.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.112955729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.020387078081247e-14,-1.3863819670217102e-15,1.979484677367241e-15)
    sum a = (-5.1019353904665405e-14,6.9319098349821626e-15,2.1909089903213254e-13)
    sum e = 3.260099212201135e-09
    sum de = -5.894486374838597e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.41e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023159035316724624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8109e+04 | 9216 |      1 | 3.279e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.425027073923392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7785993185192673, dt = 0.0023159035316724624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 271.07 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1126302083333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0086402699942664e-14,-1.3704217855869979e-15,2.48395612675217e-15)
    sum a = (-5.043201349890332e-14,6.852108927576968e-15,2.1655247135850624e-13)
    sum e = 3.25871846748173e-09
    sum de = -6.025067846114837e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.45e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023163043215768562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1146e+04 | 9216 |      1 | 2.959e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.176438252454844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7809152220509398, dt = 0.0023163043215768562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 290.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.112196180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.97026692098903e-15,-1.35464262166785e-15,2.9826181751657975e-15)
    sum a = (-4.9851334605084767e-14,6.773213108527521e-15,2.1399993173564187e-13)
    sum e = 3.2573076782575686e-09
    sum de = -6.151843612749372e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.50e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023167480929523728 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7837e+04 | 9216 |      1 | 3.311e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.186651432127956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7832315263725166, dt = 0.0023167480929523728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 357.83 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1121961805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.855446451127398e-15,-1.3390421664787882e-15,3.475445879657809e-15)
    sum a = (-4.927723225621268e-14,6.695210832271901e-15,2.1143383865285545e-13)
    sum e = 3.2558676922181002e-09
    sum de = -6.274788118113958e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.54e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023172311091866483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46457206347182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7855482744654689, dt = 0.0023172311091866483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 267.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1121961805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.741924740829907e-15,-1.3236181714677541e-15,3.962414452484639e-15)
    sum a = (-4.8709623703841825e-14,6.618090857534365e-15,2.0885475166330005e-13)
    sum e = 3.254399364037096e-09
    sum de = -6.393877549978046e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.56e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023174771482092366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.409731798624982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7878655055746556, dt = 0.0023174771482092366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.4%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 267.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.112413194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.629698941095559e-15,-1.3083702495432745e-15,4.4434423964677765e-15)
    sum a = (-4.814849470495644e-14,6.541851247629965e-15,2.0626353390959357e-13)
    sum e = 3.2529037291836406e-09
    sum de = -6.509076046956128e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.54e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023176119985508985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1294e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.329220219890335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7901829827228649, dt = 0.0023176119985508985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 270.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.112413194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.518759613871156e-15,-1.293297118375757e-15,4.9184786935555496e-15)
    sum a = (-4.759379807012394e-14,6.4664855920083064e-15,2.0366090627608916e-13)
    sum e = 3.2513817617443915e-09
    sum de = -6.620358313574222e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.51e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002317796722018871 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1343e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37500832081899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7925005947214158, dt = 0.002317796722018871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 264.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.112738715277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.409089650504094e-15,-1.2783964534414578e-15,5.387507334014321e-15)
    sum a = (-4.704544825184308e-14,6.391982267223714e-15,2.0104741872545644e-13)
    sum e = 3.2498343369647125e-09
    sum de = -6.727709440059928e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.52e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002318035713510679 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34400213008984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7948183914434346, dt = 0.002318035713510679 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 270.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
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.112738715277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.30067210300401e-15,-1.26366595204679e-15,5.850513664268998e-15)
    sum a = (-4.650336051436664e-14,6.318329760493821e-15,1.9842361619193183e-13)
    sum e = 3.2482623268260744e-09
    sum de = -6.831115925833173e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.57e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023183323454774377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.102e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.898487461535662 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7971364271569452, dt = 0.0023183323454774377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 327.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1129557291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.193490147517752e-15,-1.249103328364242e-15,6.3074845178083374e-15)
    sum a = (-4.5967450737366044e-14,6.245516642033599e-15,1.9579003411443688e-13)
    sum e = 3.2466666025710226e-09
    sum de = -6.930566051288164e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.65e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023186888484761823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1248e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.298165739710704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7994547595024226, dt = 0.0005452404975773151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 299.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1131727430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.169048040290318e-15,-1.2457824222660497e-15,6.411184414166624e-15)
    sum a = (-4.584524020132114e-14,6.2289121115114245e-15,1.9518379107773573e-13)
    sum e = 3.2462763767015674e-09
    sum de = -6.951328704159332e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.67e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023187815242524494 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1345e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.675903390489302 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 361                                                     [SPH][rank=0]
Info: time since start : 144.101338653 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 8):
   -> t = 0.7999999999999999 >= 0.7999999999999999
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.7999999999999999 -> 0.8999999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 0.8999999999999999 (current = 0.7999999999999999)
   -> iter = None (current = 360)
   -> walltime = 162.34530597 (current = 146.956680959)

Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = 162.35s)      [SPH][rank=0]
---------------- t = 0.7999999999999999, dt = 0.0023187815242524494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.04 us    (2.8%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 297.80 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 5.55 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1131727430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.062776261403442e-15,-1.231343462677097e-15,6.86360770862012e-15)
    sum a = (-4.531388130735575e-14,6.156717313504057e-15,1.9252424504238001e-13)
    sum e = 3.24466471467264e-09
    sum de = -7.047953591287427e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.75e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023192132754705046 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.472225980580507 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.52s (niter = 12) global walltime = 147.25s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8023187815242524, dt = 0.0023192132754705046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.3%)
   LB compute        : 363.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.114040798611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.95829975890526e-15,-1.217148424132302e-15,7.30702904045674e-15)
    sum a = (-4.479149879534367e-14,6.0857421209362404e-15,1.8987081826247843e-13)
    sum e = 3.243018877251095e-09
    sum de = -7.138515137578715e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.69e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023197054542968597 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0836e+04 | 9216 |      1 | 2.989e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.935243744938358 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8046379947997229, dt = 0.0023197054542968597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 315.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.115559895833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.85500243307174e-15,-1.2031135982452616e-15,7.744396481912676e-15)
    sum a = (-4.4275012165389564e-14,6.015567991415336e-15,1.872092528427125e-13)
    sum e = 3.241352399248537e-09
    sum de = -7.225106410453718e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.68e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002320027332886145 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1487e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.531179705567077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8069577002540197, dt = 0.002320027332886145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 327.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1176215277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.752882243109902e-15,-1.1892387077379664e-15,8.175640041577222e-15)
    sum a = (-4.3764411216441914e-14,5.946193538400719e-15,1.8454043150495905e-13)
    sum e = 3.2396660628077683e-09
    sum de = -7.307702008232478e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.69e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023203584003317294 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6851e+04 | 9216 |      1 | 3.432e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.334260621452927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8092777275869059, dt = 0.0023203584003317294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 284.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1180555555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.651925427987802e-15,-1.1755218829249054e-15,8.600744112762584e-15)
    sum a = (-4.325962714008018e-14,5.8776094148751736e-15,1.8186493679643343e-13)
    sum e = 3.2379607868693305e-09
    sum de = -7.386298854310016e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.74e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023207240855627645 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1469e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.522807042468397 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8115980859872376, dt = 0.0023207240855627645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 20.83 us   (5.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.93 us    (0.5%)
   LB compute        : 322.60 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1203342013888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.552117409337175e-15,-1.1619611430638739e-15,9.019698398590607e-15)
    sum a = (-4.276058704634604e-14,5.8098057146944714e-15,1.7918331643215177e-13)
    sum e = 3.2362374689173253e-09
    sum de = -7.460896421040923e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.72e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002321121993338712 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.375548620702226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8139188100728003, dt = 0.002321121993338712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 329.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.123046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.45344393747865e-15,-1.1485545520824836e-15,9.43249308473597e-15)
    sum a = (-4.226721968675467e-14,5.7427727609468425e-15,1.7649611663771157e-13)
    sum e = 3.2344970075343455e-09
    sum de = -7.53149589693775e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.71e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023215493335147566 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.504926532953586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.816239932066139, dt = 0.0023215493335147566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 308.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.126953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.355891084700178e-15,-1.135300217638817e-15,9.839118867424459e-15)
    sum a = (-4.177945542417307e-14,5.676501087706683e-15,1.7380388208167613e-13)
    sum e = 3.2327403026921034e-09
    sum de = -7.598100308118993e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.73e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023220030136989075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.043e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.465879456090928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8185614813996538, dt = 0.0023220030136989075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 313.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.129774305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.259445247693612e-15,-1.1221962914848347e-15,1.0239566927736614e-14)
    sum a = (-4.129722623715143e-14,5.610981457728814e-15,1.7110715981460968e-13)
    sum e = 3.2309682556885884e-09
    sum de = -7.660714642083144e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.30e-03 |
|       force |  4.76e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023223715459224355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9115e+04 | 9216 |      1 | 3.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.40825947039139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8208834844133527, dt = 0.0023223715459224355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 306.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.1317274305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.164097613367574e-15,-1.1092415761919244e-15,1.0633810428361253e-14)
    sum a = (-4.08204880665924e-14,5.5462078809778265e-15,1.6840661956078415e-13)
    sum e = 3.229181851794861e-09
    sum de = -7.719342859800443e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.81e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00232275033271371 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.985044620090445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8232058559592751, dt = 0.00232275033271371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 284.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1340060763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.069835392710392e-15,-1.0964343341468307e-15,1.1021841131060316e-14)
    sum a = (-4.034917696341645e-14,5.482171670474476e-15,1.6570281459522274e-13)
    sum e = 3.2273820042763735e-09
    sum de = -7.773994219648397e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.31e-03 |
|       force |  4.87e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023230719634546636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1392e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.482512674286646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8255286062919888, dt = 0.0023230719634546636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 298.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1376953124999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.976648719969033e-15,-1.083773224905157e-15,1.1403640561980476e-14)
    sum a = (-3.9883243599476827e-14,5.418866124030532e-15,1.629963729802095e-13)
    sum e = 3.225569675903937e-09
    sum de = -7.824678286311044e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.95e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002323362173154639 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1379e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.474547929267356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8278516782554435, dt = 0.002323362173154639 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 19.94 us   (6.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 275.48 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1394314236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.884526698814375e-15,-1.0712567680008647e-15,1.1779196540010936e-14)
    sum a = (-3.942263349446664e-14,5.356283839081087e-15,1.6028788250417702e-13)
    sum e = 3.2237458085566214e-09
    sum de = -7.871407653818717e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.96e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002323693575996355 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.974e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.128020139670358 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.71s (niter = 9) global walltime = 150.87s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8301750404285981, dt = 0.002323693575996355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 365.00 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1436631944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.793455660661708e-15,-1.0588831063097793e-15,1.214851006071192e-14)
    sum a = (-3.896727830351696e-14,5.294415531667829e-15,1.5757783559973e-13)
    sum e = 3.221911284418856e-09
    sum de = -7.914198510754909e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  4.93e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023240828014609296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.098e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.00041840476634 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8324987340045945, dt = 0.0023240828014609296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 296.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1461588541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.703421532303123e-15,-1.0466503277229679e-15,1.2511585339008812e-14)
    sum a = (-3.8517107661243494e-14,5.233251638711643e-15,1.5486669791665885e-13)
    sum e = 3.2200669679609787e-09
    sum de = -7.953068903063994e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  4.95e-02 |
| dust1_fluid |  2.32e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002324527164011249 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.582965926055465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8348228168060554, dt = 0.002324527164011249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 312.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1499565972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.614410586188703e-15,-1.03455656710879e-15,1.2868426730924766e-14)
    sum a = (-3.8072052930895935e-14,5.172782836227765e-15,1.5215493172041435e-13)
    sum e = 3.218213721092351e-09
    sum de = -7.988038214190311e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  4.99e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023250228578391733 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8217e+04 | 9216 |      1 | 3.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.621881498693284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8371473439700666, dt = 0.0023250228578391733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.62 us   (7.3%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 311.51 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.152777777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.526409463785048e-15,-1.022600009462829e-15,1.3219038638000808e-14)
    sum a = (-3.763204731890407e-14,5.113000047136886e-15,1.4944299726925734e-13)
    sum e = 3.2163524040401105e-09
    sum de = -8.019127254793937e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.34e-03 |
|       force |  5.03e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023255650951742473 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1375e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.495208658526256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8394723668279058, dt = 0.0023255650951742473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 267.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.1557074652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.439405199633176e-15,-1.0107788931973264e-15,1.3563425401383793e-14)
    sum a = (-3.719702599833437e-14,5.053894464875335e-15,1.4673135776385194e-13)
    sum e = 3.21448387596914e-09
    sum de = -8.046358304061737e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.08e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00232614828694743 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1424e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.546423518196047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8417979319230801, dt = 0.00232614828694743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 331.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.159939236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.3533852365269e-15,-9.990915121847124e-16,1.3901591250795404e-14)
    sum a = (-3.676692618263824e-14,4.995457560335494e-15,1.4402047821558728e-13)
    sum e = 3.2126089954417156e-09
    sum de = -8.069755021861979e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.06e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023265702423834506 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1167e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.320178057723 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.8441240802100275, dt = 0.0023265702423834506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 338.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1652560763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.268344638141638e-15,-9.875371957303517e-16,1.4233512055779126e-14)
    sum a = (-3.634172319068676e-14,4.937685978230518e-15,1.4131105394387986e-13)
    sum e = 3.210728778865284e-09
    sum de = -8.089340657315181e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.09e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002326809793002005 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.560665417225877 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.846450650452411, dt = 0.002326809793002005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.00 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.171115451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.184278993040736e-15,-9.761153444629455e-16,1.455916416706455e-14)
    sum a = (-3.592139496563536e-14,4.880576723151197e-15,1.3860379497958127e-13)
    sum e = 3.208844256310602e-09
    sum de = -8.105141446277203e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.08e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002327101974458378 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.603091299310663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.848777460245413, dt = 0.002327101974458378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 267.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.6%)
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.175130208333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.101175255805816e-15,-9.648241859211351e-16,1.4878559693660388e-14)
    sum a = (-3.5505876278921447e-14,4.824120930592872e-15,1.358991282285258e-13)
    sum e = 3.2069562622441014e-09
    sum de = -8.117187973492503e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.04e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023274496599371922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.001e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.914756032185213 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.11s (niter = 7) global walltime = 153.58s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8511045622198714, dt = 0.0023274496599371922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 313.53 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1781684027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.019020593313292e-15,-9.536619764945868e-16,1.519171105577644e-14)
    sum a = (-3.5095102965891233e-14,4.7683098827530334e-15,1.3319747606872486e-13)
    sum e = 3.205065620943144e-09
    sum de = -8.125511748134254e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.03e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023278546083193357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8683e+04 | 9216 |      1 | 3.213e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.07720059623714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8534320118798085, dt = 0.0023278546083193357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.5%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 347.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.937802323248292e-15,-9.426269930629237e-16,1.5498631434548975e-14)
    sum a = (-3.468901161660745e-14,4.713134965035928e-15,1.304992550697657e-13)
    sum e = 3.2031731480379536e-09
    sum de = -8.130145612128654e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.05e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023283174188576203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0557e+04 | 9216 |      1 | 3.016e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.786363675864212 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8557598664881279, dt = 0.0023283174188576203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 329.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.188042534722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.857507954067729e-15,-9.317175384197808e-16,1.57993345902081e-14)
    sum a = (-3.4287539769817184e-14,4.6585876927145156e-15,1.2780487451238297e-13)
    sum e = 3.201279651180553e-09
    sum de = -8.13112364915588e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.09e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002328837518017282 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1412e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5687941687967 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8580881839069855, dt = 0.002328837518017282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 266.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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.192816840277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.778125221998246e-15,-9.209319463018404e-16,1.609383469035755e-14)
    sum a = (-3.3890626110135044e-14,4.60465973205522e-15,1.2511473746463757e-13)
    sum e = 3.1993859308611876e-09
    sum de = -8.128481249189206e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.17e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023294131761476215 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1410e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5737860065583 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8604170214250028, dt = 0.0023294131761476215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 263.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.196506076388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.6996421247005955e-15,-9.102685859792956e-16,1.6382146162295674e-14)
    sum a = (-3.3498210623917925e-14,4.5513429286549115e-15,1.2242924329624946e-13)
    sum e = 3.1974927811451934e-09
    sum de = -8.122255015838543e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.28e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023300415583820534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.743876930912602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8627464346011504, dt = 0.0023300415583820534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 307.59 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.201063368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.622046950716893e-15,-8.99725866241454e-16,1.6664283574369007e-14)
    sum a = (-3.3110234753541854e-14,4.498629331633761e-15,1.1974878872824214e-13)
    sum e = 3.195600990415352e-09
    sum de = -8.112482801449052e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.41e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023307187976676427 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.989e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.067370358910757 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8650764761595324, dt = 0.0023307187976676427 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 331.01 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.12 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.2039930555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.545328304132677e-15,-8.893022387299928e-16,1.694026154202164e-14)
    sum a = (-3.272664152132064e-14,4.446511193801857e-15,1.1707376908733947e-13)
    sum e = 3.193711342018282e-09
    sum de = -8.099203713684482e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.38e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002331440091932233 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9956e+04 | 9216 |      1 | 3.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.273088274581823 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.51s (niter = 5) global walltime = 155.69s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8674071949572001, dt = 0.002331440091932233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 320.44 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2075737847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4694751239941365e-15,-8.789962006257306e-16,1.7210094661689638e-14)
    sum a = (-3.234737561978096e-14,4.3949810040656795e-15,1.1440457848722917e-13)
    sum e = 3.1918246148012387e-09
    sum de = -8.082458072471568e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.32e-03 |
|       force |  5.36e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023321998227359003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.547091614230734 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8697386350491323, dt = 0.0023321998227359003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.2124565972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.394476698171923e-15,-8.688062964822321e-16,1.747379747035796e-14)
    sum a = (-3.197238349090973e-14,4.344031482044553e-15,1.1174161083985586e-13)
    sum e = 3.18994158356774e-09
    sum de = -8.062287472317146e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.38e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023329304391491398 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694800570619293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8720708348718682, dt = 0.0023329304391491398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 323.85 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.217447916666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.3203246298022106e-15,-8.587313854420873e-16,1.7731377589274204e-14)
    sum a = (-3.160162314853514e-14,4.293656926872033e-15,1.0908533151476588e-13)
    sum e = 3.1880630687107034e-09
    sum de = -8.038735350465739e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.40e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023334838195760658 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1295e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.519564386954936 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8744037653110174, dt = 0.0023334838195760658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 310.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.223415798611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.24701523255707e-15,-8.487709666427961e-16,1.7982827987861818e-14)
    sum a = (-3.1235076162628274e-14,4.243854833182146e-15,1.0643636640435491e-13)
    sum e = 3.1861899998400437e-09
    sum de = -8.011848382664865e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.38e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023340543093993103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0297e+04 | 9216 |      1 | 3.042e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.615850028812115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8767372491305935, dt = 0.0023340543093993103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 300.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
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.227647569444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.174538534165278e-15,-8.389236851708413e-16,1.8228165588930824e-14)
    sum a = (-3.087269267087333e-14,4.1946184253526285e-15,1.0379510711326244e-13)
    sum e = 3.184323138777226e-09
    sum de = -7.981673420454406e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.40e-02 |
| dust1_fluid |  2.33e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023346405871842767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1485e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.706563973727135 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.20s (niter = 4) global walltime = 157.17s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8790713034399927, dt = 0.0023346405871842767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 274.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.230902777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.102884804195292e-15,-8.291882189726611e-16,1.8467407437421544e-14)
    sum a = (-3.051442401987994e-14,4.145941093975473e-15,1.0116194106974596e-13)
    sum e = 3.182463238310519e-09
    sum de = -7.948258268256955e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.36e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023352411608817455 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.72429638422693 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.881405944027177, dt = 0.0023352411608817455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
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.2350260416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0320444794906555e-15,-8.195632687158725e-16,1.8700571217977506e-14)
    sum a = (-3.016022239771047e-14,4.097816343818488e-15,9.853724967788134e-14)
    sum e = 3.18061104188129e-09
    sum de = -7.911651939084452e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.37e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00233585438505615 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1320e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.570364687084144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8837411851880588, dt = 0.00233585438505615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 312.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.240559895833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.962008164852615e-15,-8.100475578888128e-16,1.8927675241052782e-14)
    sum a = (-2.981004082304211e-14,4.050237788707381e-15,9.592140750727962e-14)
    sum e = 3.1787672833676277e-09
    sum de = -7.871904643493277e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.42e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023364784821265053 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47345051488464 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8860770395731149, dt = 0.0023364784821265053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 311.46 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.244032118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.892766632500777e-15,-8.006398327365055e-16,1.914873843242999e-14)
    sum a = (-2.946383316337857e-14,4.003199163347896e-15,9.331478265239868e-14)
    sum e = 3.176932686898923e-09
    sum de = -7.829067727514004e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.33e-03 |
|       force |  5.51e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023371115665862014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1352e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.614612370915722 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.90s (niter = 3) global walltime = 158.34s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8884135180552414, dt = 0.0023371115665862014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 306.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2489149305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.824310820592829e-15,-7.913388620361555e-16,1.9363780328876695e-14)
    sum a = (-2.912155410345332e-14,3.9566943104117255e-15,9.071773769375264e-14)
    sum e = 3.1751079666545115e-09
    sum de = -7.78319370495743e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.34e-03 |
|       force |  5.60e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023376076954633733 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.568678225960554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8907506296218276, dt = 0.0023376076954633733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 311.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2515190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.756636023791884e-15,-7.821440064823385e-16,1.9572808018709037e-14)
    sum a = (-2.878318011985558e-14,3.910720032136333e-15,8.813079002496038e-14)
    sum e = 3.173293938631499e-09
    sum de = -7.734339121311205e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.34e-03 |
|       force |  5.66e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023380814965047315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9781e+04 | 9216 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.193432989506267 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.893088237317291, dt = 0.0023380814965047315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.09 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.2557508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.689734095756827e-15,-7.730541592504707e-16,1.9775841353767143e-14)
    sum a = (-2.844867047859312e-14,3.865270796376164e-15,8.55543164062803e-14)
    sum e = 3.1714913147460733e-09
    sum de = -7.682560030918652e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.67e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002338581267490757 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1368e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6487337887458 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 159.24s (max_walltime = 162.35s)  [SPH][rank=0]
---------------- t = 0.8954263188137958, dt = 0.002338581267490757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 304.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.260416666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.623595623292145e-15,-7.640680413810919e-16,1.9972905072818747e-14)
    sum a = (-2.8117978116410398e-14,3.820340206530886e-15,8.298863140496328e-14)
    sum e = 3.1697007570477725e-09
    sum de = -7.62791235638532e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.65e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002339107476025502 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.19265410214376 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8977649000812865, dt = 0.0022350999187134013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 309.27 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2631293402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.561135808171617e-15,-7.555817362137572e-16,2.0155392924672236e-14)
    sum a = (-2.780567904010459e-14,3.777908680368099e-15,8.054868479119055e-14)
    sum e = 3.168002215904501e-09
    sum de = -7.57294692332969e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.61e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023396348528523458 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.24282021351296 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 159.86s (max_walltime = 162.35s)  [SPH][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 159.859990145 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 9):
   -> t = 0.8999999999999999 >= 0.8999999999999999
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.8999999999999999 -> 0.9999999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 0.9999999999999999 (current = 0.8999999999999999)
   -> iter = None (current = 403)
   -> walltime = 162.34530597 (current = 162.894128628)

Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = 162.35s)      [SPH][rank=0]
---------------- t = 0.8999999999999999, dt = 0.0023396348528523458 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 332.14 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.2676866319444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4964296822019704e-15,-7.467902287447542e-16,2.0341120672736117e-14)
    sum a = (-2.7482148411239966e-14,3.733951143164334e-15,7.800364857884052e-14)
    sum e = 3.166236618287996e-09
    sum de = -7.512975179128989e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.59e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023402117787317675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4465e+04 | 9216 |      1 | 3.767e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.35909543372378 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 163.27s > 162.35s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 5):
   -> walltime = 163.271443312 >= 162.34530597
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000005.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (57.3%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000005.sham              [Shamrock Dump][rank=0]
              - took 1.36 ms, bandwidth = 2.56 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 163.271443312 -> 193.271443312

[Simulation] Evolve until next trigger(s) :
   -> t = 0.9999999999999999 (current = 0.9023396348528523)
   -> iter = None (current = 404)
   -> walltime = 193.271443312 (current = 163.275347055)

Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = 193.27s)      [SPH][rank=0]
---------------- t = 0.9023396348528523, dt = 0.0023402117787317675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (0.8%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 328.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.271484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4324941065529264e-15,-7.381034145914844e-16,2.0520688502211634e-14)
    sum a = (-2.7162470532913285e-14,3.6905170725440216e-15,7.547161047140549e-14)
    sum e = 3.1644854586510493e-09
    sum de = -7.45018280416823e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.58e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408129493461844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.797830039314807 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.28s (niter = 24) global walltime = 163.58s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 0.9046798466315841, dt = 0.0023408129493461844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 291.59 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (59.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2758246527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.369285900761571e-15,-7.295154268999556e-16,2.0694390672598367e-14)
    sum a = (-2.6846429503250785e-14,3.647577134526153e-15,7.295151542842481e-14)
    sum e = 3.162748877457398e-09
    sum de = -7.384751074987019e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.39e-03 |
|       force |  5.57e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341417164444897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.314e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.431421914253836 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9070206595809303, dt = 0.002341417164444897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 275.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.280381944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.306797106385943e-15,-7.210251843700856e-16,2.0862251067439915e-14)
    sum a = (-2.653398553230565e-14,3.6051259214639675e-15,7.044367074033932e-14)
    sum e = 3.1610274773077258e-09
    sum de = -7.316739312235963e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.58e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023420276601883103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1523e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83182314017884 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9093620767453752, dt = 0.0023420276601883103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 284.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2836371527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.245019559172026e-15,-7.126315777430447e-16,2.1024296137521826e-14)
    sum a = (-2.6225097796972085e-14,3.563157888709894e-15,6.794836580291823e-14)
    sum e = 3.159321858873716e-09
    sum de = -7.246208128627998e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.59e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023426758980576775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.120e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.02476169573978 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9117041044055635, dt = 0.0023426758980576775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 270.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2871093749999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.183944366448795e-15,-7.043333987829972e-16,2.1180555099777666e-14)
    sum a = (-2.5919721831992593e-14,3.52166699387104e-15,6.546584897999784e-14)
    sum e = 3.1576325863269216e-09
    sum de = -7.173217735979708e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.54e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023433583265921043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.87020689489557 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9140467803036212, dt = 0.0023433583265921043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 271.47 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
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.2914496527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.123562868927389e-15,-6.96129470969098e-16,2.1331057175952163e-14)
    sum a = (-2.5617814344906022e-14,3.4806473558698236e-15,6.299636457881348e-14)
    sum e = 3.1559602137408026e-09
    sum de = -7.097828821005132e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.45e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023440705400898385 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1494e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.828385313735907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9163901386302133, dt = 0.0023440705400898385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.296115451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.063866643732135e-15,-6.880186498968029e-16,2.147583165487929e-14)
    sum a = (-2.5319333217974716e-14,3.4400932488663663e-15,6.054015421079908e-14)
    sum e = 3.1543052853094615e-09
    sum de = -7.0201025790814e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.41e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344702233651668 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0693e+04 | 9216 |      1 | 3.003e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.104184122704247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9187342091703032, dt = 0.002344702233651668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.5%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 268.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.300455729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0048501769895774e-15,-6.800001864163574e-16,2.1614901524492907e-14)
    sum a = (-2.5024250885365452e-14,3.4000009312871578e-15,5.809757013810037e-14)
    sum e = 3.152668409407229e-09
    sum de = -6.940104307589648e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.41e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023452512026669804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1401e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.760272881219617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9210789114039549, dt = 0.0023452512026669804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3045789930555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.946507962606986e-15,-6.72073332416301e-16,2.1748291354576276e-14)
    sum a = (-2.4732539813407325e-14,3.36036666286102e-15,5.5668955609299985e-14)
    sum e = 3.1510501783379404e-09
    sum de = -6.85790025631156e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.46e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234580633096992 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.801883339073807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9234241626066219, dt = 0.00234580633096992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 315.18 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
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.310329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.888832282003014e-15,-6.642370391814386e-16,2.187603208751372e-14)
    sum a = (-2.444416140940261e-14,3.3211851950565723e-15,5.325455086996197e-14)
    sum e = 3.14945110620658e-09
    sum de = -6.773554255196227e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.55e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346311139632614 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1363e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.73857154836522 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9257699689375918, dt = 0.002346311139632614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 288.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.3127170138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.83181691373187e-15,-6.564904614295715e-16,2.1998151970476328e-14)
    sum a = (-2.4159084568529195e-14,3.282452307026937e-15,5.085464909656844e-14)
    sum e = 3.147871731482611e-09
    sum de = -6.68713247335707e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.54e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023468053559121175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1424e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.800801155514733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9281162800772244, dt = 0.0023468053559121175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 317.11 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.37 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.317816840277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7754546841557286e-15,-6.488326244784553e-16,2.2114682475239675e-14)
    sum a = (-2.3877273419243214e-14,3.244163123427352e-15,4.846949481397703e-14)
    sum e = 3.1463125491127033e-09
    sum de = -6.598700240752326e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.52e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347310680469999 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.968e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46086605078165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9304630854331365, dt = 0.002347310680469999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 285.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3226996527777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.719737983195956e-15,-6.412624943600877e-16,2.2225656691671317e-14)
    sum a = (-2.3598689916179232e-14,3.2063124721942905e-15,4.6099305763535806e-14)
    sum e = 3.1447740246573976e-09
    sum de = -6.508322467195147e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.40e-03 |
|       force |  5.52e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023478180168894592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1551e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.929368922451488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9328103961136065, dt = 0.0023478180168894592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.20 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.3283420138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.664659514851685e-15,-6.33779079788994e-16,2.233110768725957e-14)
    sum a = (-2.3323297573793862e-14,3.168895399026775e-15,4.374430181401455e-14)
    sum e = 3.1432566150622156e-09
    sum de = -6.416064694042872e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.41e-03 |
|       force |  5.52e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348267775551992 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1509e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.89784951032679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9351582141304959, dt = 0.002348267775551992 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 311.50 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.333441840277777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.610213452291204e-15,-6.263815890787456e-16,2.243106646123597e-14)
    sum a = (-2.3051067260793304e-14,3.131907946279397e-15,4.140475611699424e-14)
    sum e = 3.1417608002922962e-09
    sum de = -6.321995126626596e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.41e-03 |
|       force |  5.53e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348730584221021 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9276e+04 | 9216 |      1 | 3.148e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.854412795535026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9375064819060479, dt = 0.002348730584221021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 319.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3382161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5563923404525895e-15,-6.190690093197794e-16,2.252556813836108e-14)
    sum a = (-2.278196170124905e-14,3.095345046927215e-15,3.9080863510769486e-14)
    sum e = 3.1402869977446883e-09
    sum de = -6.226179634928644e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.42e-03 |
|       force |  5.50e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349206136365929 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1355e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.767018072861116 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9398552124902689, dt = 0.002349206136365929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 274.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.342556423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.50318884445466e-15,-6.118403439416321e-16,2.2614648043917282e-14)
    sum a = (-2.2515944222525784e-14,3.059201719964289e-15,3.677281477003466e-14)
    sum e = 3.1388356106785594e-09
    sum de = -6.128684210876117e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.43e-03 |
|       force |  5.45e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023496937171912716 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9319e+04 | 9216 |      1 | 3.143e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.9050406566521 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9422044186266348, dt = 0.0023496937171912716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 310.18 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.3445095486111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.450595736725312e-15,-6.046946109433215e-16,2.2698341854608002e-14)
    sum a = (-2.2252978683369578e-14,3.023473054990883e-15,3.448079710857486e-14)
    sum e = 3.1374070278588993e-09
    sum de = -6.029575006519648e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.43e-03 |
|       force |  5.41e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350192225239594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1374e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.796994687145617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9445541123438261, dt = 0.002350192225239594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.48 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.49 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.347547743055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.398605903472742e-15,-5.976308437860218e-16,2.2776685586148996e-14)
    sum a = (-2.199302951712339e-14,2.9881542185604396e-15,3.2204993519115884e-14)
    sum e = 3.136001623723512e-09
    sum de = -5.928918276220183e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.44e-03 |
|       force |  5.37e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507002091861058 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9600e+04 | 9216 |      1 | 3.114e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.174049806783216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9469043045690657, dt = 0.0023507002091861058 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 322.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.352322048611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3472123496407514e-15,-5.906480920667072e-16,2.2849715583196426e-14)
    sum a = (-2.173606174830425e-14,2.953240459951424e-15,2.994558118273356e-14)
    sum e = 3.1346197585284517e-09
    sum de = -5.82678038390843e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.45e-03 |
|       force |  5.34e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023511249545700224 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1311e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.750932803916047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9492550047782519, dt = 0.0023511249545700224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 321.76 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.354926215277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.296410179544009e-15,-5.837456906140066e-16,2.291746578588659e-14)
    sum a = (-2.14820508977574e-14,2.9187284532037833e-15,2.7702820937267725e-14)
    sum e = 3.1332618313969427e-09
    sum de = -5.723231624877613e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.45e-03 |
|       force |  5.30e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235144698379512 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.894301003598173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9516061297328219, dt = 0.00235144698379512 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 315.48 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3578559027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.246194881379601e-15,-5.769230264164365e-16,2.297997099581923e-14)
    sum a = (-2.1230974406830147e-14,2.884615132253899e-15,2.547698200142754e-14)
    sum e = 3.1319282328092957e-09
    sum de = -5.618343372486268e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.46e-03 |
|       force |  5.27e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002351776446116853 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.890299583067925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.953957576716617, dt = 0.002351776446116853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 316.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3606770833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1965595723701616e-15,-5.701791643255158e-16,2.3037270190884814e-14)
    sum a = (-2.0982797861034863e-14,2.8508958210059663e-15,2.3268221000636484e-14)
    sum e = 3.1306192713756873e-09
    sum de = -5.512182024921051e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.46e-03 |
|       force |  5.25e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352116659292978 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1451e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.893261153630213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9563093531627338, dt = 0.002352116659292978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 20.49 us   (6.0%)
   LB compute        : 303.68 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.36328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.14749741184006e-15,-5.635131749114643e-16,2.3089402505067308e-14)
    sum a = (-2.0737487059403643e-14,2.8175658745316676e-15,2.1076686356400355e-14)
    sum e = 3.1293352397342833e-09
    sum de = -5.404813496570266e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.47e-03 |
|       force |  5.22e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235247050371346 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.263229113154527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9586614698220268, dt = 0.00235247050371346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 286.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3671874999999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.099001585023133e-15,-5.569241322611044e-16,2.313640741549698e-14)
    sum a = (-2.0495007923585484e-14,2.7846206615559794e-15,1.8902519300261455e-14)
    sum e = 3.1280764140325697e-09
    sum de = -5.296303228978726e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.47e-03 |
|       force |  5.18e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023528403375306377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.118e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.157749845423375 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.42s (niter = 18) global walltime = 170.80s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 0.9610139403257403, dt = 0.0023528403375306377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 272.85 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3702256944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0510653161701046e-15,-5.504111157643524e-16,2.3178324693431765e-14)
    sum a = (-2.0255326580759325e-14,2.752055578461372e-15,1.6745854819413996e-14)
    sum e = 3.126843054440168e-09
    sum de = -5.186716193053321e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.48e-03 |
|       force |  5.14e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002353227927510584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.187e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.57343723491774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.963366780663271, dt = 0.002353227927510584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 273.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3726128472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0036818819455046e-15,-5.439732119394617e-16,2.3215194363075613e-14)
    sum a = (-2.0018409408537613e-14,2.7198660596175856e-15,1.4606823331606098e-14)
    sum e = 3.1256354056651373e-09
    sum de = -5.076116919366537e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.49e-03 |
|       force |  5.11e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023536343978773143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0442e+04 | 9216 |      1 | 3.027e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.98332063574498 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9657200085907816, dt = 0.0023536343978773143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.4%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.71 us    (0.6%)
   LB compute        : 277.41 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (57.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.374782986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.956844625023469e-15,-5.376095162614259e-16,2.324705667057974e-14)
    sum a = (-1.978422312511566e-14,2.6880475804532507e-15,1.2485551444235309e-14)
    sum e = 3.124453697450893e-09
    sum de = -4.964569456834707e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.49e-03 |
|       force |  5.09e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023540601967236424 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0746e+04 | 9216 |      1 | 2.997e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.267226650326922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9680736429886588, dt = 0.0023540601967236424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
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.377170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.910546967287834e-15,-5.31319134978758e-16,2.32739520610375e-14)
    sum a = (-1.955273483659555e-14,2.6565956744263642e-15,1.0382163395673757e-14)
    sum e = 3.123298145069971e-09
    sum de = -4.852137404185803e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.50e-03 |
|       force |  5.06e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002354505082136976 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.03237476887467 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9704277031853825, dt = 0.002354505082136976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 288.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3791232638888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.864782422428535e-15,-5.251011868022666e-16,2.3295921166479566e-14)
    sum a = (-1.9323912112270156e-14,2.6255059343757395e-15,8.296782858865915e-15)
    sum e = 3.1221689497648936e-09
    sum de = -4.73888398751735e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.50e-03 |
|       force |  5.04e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002354899197848896 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9383e+04 | 9216 |      1 | 3.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.024674405753963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9727822082675195, dt = 0.002354899197848896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.6%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.62 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 399.28 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.382052951388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.819545939429627e-15,-5.189549854589374e-16,2.331300423425206e-14)
    sum a = (-1.9097729697312553e-14,2.5947749280370605e-15,6.229593117451772e-15)
    sum e = 3.121066331751062e-09
    sum de = -4.624875353808009e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.51e-03 |
|       force |  5.02e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002355165878586482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.781002867631383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9751371074653684, dt = 0.002355165878586482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.35 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 368.24 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3842230902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7748339364819974e-15,-5.128800442969193e-16,2.3325241947644253e-14)
    sum a = (-1.8874169681131908e-14,2.5644002217049023e-15,4.180841946088376e-15)
    sum e = 3.1199905287323343e-09
    sum de = -4.5101810589161855e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.51e-03 |
|       force |  5.01e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023554426482323507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8623e+04 | 9216 |      1 | 3.220e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.33321729036823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9774922733439549, dt = 0.0023554426482323507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3876953125000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.730640172725617e-15,-5.068755153832198e-16,2.3332677106660868e-14)
    sum a = (-1.865320086350762e-14,2.5343775772603697e-15,2.150650364166905e-15)
    sum e = 3.1189416949888945e-09
    sum de = -4.394863670188209e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.52e-03 |
|       force |  5.00e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023557323006610643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1342e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.837452213699077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9798477159921873, dt = 0.0023557323006610643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 272.56 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.391059027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.686958464629417e-15,-5.009405585709746e-16,2.333535246326599e-14)
    sum a = (-1.8434792323902563e-14,2.504702793233839e-15,1.3913571114089808e-16)
    sum e = 3.1179199707273238e-09
    sum de = -4.278985112284035e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.52e-03 |
|       force |  4.99e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002356037174685394 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9801e+04 | 9216 |      1 | 3.093e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.423172865375243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9822034482928484, dt = 0.002356037174685394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.30 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 352.44 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3932291666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6437826646321365e-15,-4.950743386025435e-16,2.3333310977157192e-14)
    sum a = (-1.8218913322506022e-14,2.475371692785922e-15,-1.853589703718048e-15)
    sum e = 3.116925481128083e-09
    sum de = -4.162606707530154e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.53e-03 |
|       force |  4.99e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002356359082699857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1354e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.85602623476621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9845594854675338, dt = 0.002356359082699857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 356.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3959418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.601106672224408e-15,-4.8927602661265125e-16,2.332659578664053e-14)
    sum a = (-1.8005533361029956e-14,2.446380133243457e-15,-3.8274178605950525e-15)
    sum e = 3.1159583368100604e-09
    sum de = -4.045789177003785e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.53e-03 |
|       force |  4.99e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002356699250808451 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.563674595259123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9869158445502336, dt = 0.002356699250808451 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 338.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.3988715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5589244451470585e-15,-4.835448016476718e-16,2.331525018988225e-14)
    sum a = (-1.7794622226776072e-14,2.4177240082435434e-15,-5.782245062663615e-15)
    sum e = 3.1150186342868397e-09
    sum de = -3.928592646370145e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.54e-03 |
|       force |  4.99e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023570582813951845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9740e+04 | 9216 |      1 | 3.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.378137462567228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9892725438010421, dt = 0.0023570582813951845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.53 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4012586805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5172300105189854e-15,-4.778798521864205e-16,2.32993176313789e-14)
    sum a = (-1.758615005291148e-14,2.389399260873541e-15,-7.717971042484849e-15)
    sum e = 3.1141064564045367e-09
    sum de = -3.811076629044527e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.54e-03 |
|       force |  5.00e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023574361290933468 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4417e+04 | 9216 |      1 | 3.774e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.48121924079278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9916296020824373, dt = 0.0023574361290933468 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 306.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.403537326388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.476017475544501e-15,-4.722803775820395e-16,2.327884169811971e-14)
    sum a = (-1.7380087377122545e-14,2.361401889106052e-15,-9.634498011024322e-15)
    sum e = 3.1132218727665812e-09
    sum de = -3.6933000236711045e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.55e-03 |
|       force |  5.00e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023578320955441497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1076e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61737477233843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9939870382115307, dt = 0.0023578320955441497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 306.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4069010416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4352810375017267e-15,-4.66745589424611e-16,2.3253866124525036e-14)
    sum a = (-1.7176405187031943e-14,2.333727946584858e-15,-1.1531729805812627e-14)
    sum e = 3.1123649401157067e-09
    sum de = -3.5753210655527856e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.56e-03 |
|       force |  5.01e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023582448501028304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.894927497474953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9963448703070749, dt = 0.0023582448501028304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 306.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.409830729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3950149926286973e-15,-4.61274712768553e-16,2.3224434805088936e-14)
    sum a = (-1.6975074962196316e-14,2.3063735633877748e-15,-1.3409570372276594e-14)
    sum e = 3.1115357026803535e-09
    sum de = -3.4571973618760536e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.56e-03 |
|       force |  5.03e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023586724571602277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0303e+04 | 9216 |      1 | 3.041e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.91516378626944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9987031151571777, dt = 0.001296884842822199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 289.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.4114583333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.373237668187615e-15,-4.58315866018604e-16,2.3204829932587298e-14)
    sum a = (-1.6866188340662324e-14,2.2915793295989772e-15,-1.4426102989701253e-14)
    sum e = 3.111100683686279e-09
    sum de = -3.3921605473868795e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.56e-03 |
|       force |  5.04e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023589128556413584 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1125e+04 | 9216 |      1 | 2.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.767566040996886 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 447                                                     [SPH][rank=0]
Info: time since start : 176.117192899 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 10):
   -> t = 0.9999999999999999 >= 0.9999999999999999
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 0.9999999999999999 -> 1.0999999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 1.0999999999999999 (current = 0.9999999999999999)
   -> iter = None (current = 446)
   -> walltime = 193.271443312 (current = 178.94898108)

Info: evolve_until (target_time = 1.10s, niter_max = -1, max_walltime = 193.27s)      [SPH][rank=0]
---------------- t = 0.9999999999999999, dt = 0.0023589128556413584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.3%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 290.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.412868923611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3335224063893897e-15,-4.529198232871485e-16,2.3170140849927297e-14)
    sum a = (-1.66676120317169e-14,2.264599116207772e-15,-1.628150535709928e-14)
    sum e = 3.11030530901512e-09
    sum de = -3.2739681200576025e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.57e-03 |
|       force |  5.06e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023593513224279637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7286e+04 | 9216 |      1 | 3.378e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.14238315350516 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.38s (niter = 10) global walltime = 179.29s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0023589128556412, dt = 0.0023593513224279637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.8%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.67 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 348.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4146050347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2944318660048548e-15,-4.47608660353803e-16,2.312953869248702e-14)
    sum a = (-1.647215933010031e-14,2.2380433019634426e-15,-1.81094134688264e-14)
    sum e = 3.10954680518285e-09
    sum de = -3.1557317673942745e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.57e-03 |
|       force |  5.08e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002359618477025635 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.106e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.343009801673386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0047182641780692, dt = 0.002359618477025635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 270.57 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 19.47 us   (6.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4178602430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.255794425287677e-15,-4.423590592738267e-16,2.308465104714113e-14)
    sum a = (-1.6278972125562507e-14,2.211795296323166e-15,-1.991748886513011e-14)
    sum e = 3.1088161195103414e-09
    sum de = -3.037559406480393e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.58e-03 |
|       force |  5.10e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235989383705175 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.824e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.214451676423 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.0070778826550948, dt = 0.00235989383705175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 307.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.419162326388888
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2176057033438514e-15,-4.3717042482478708e-16,2.3035514703854925e-14)
    sum a = (-1.6088028517486714e-14,2.1858521246199897e-15,-2.1705595060284433e-14)
    sum e = 3.1081132274367625e-09
    sum de = -2.919505190205709e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.58e-03 |
|       force |  5.13e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00236017630180517 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9901e+04 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.563321431104203 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0094377764921465, dt = 0.00236017630180517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 279.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.4224175347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1798604230159496e-15,-4.3204204000646274e-16,2.298217580239793e-14)
    sum a = (-1.5899302115911832e-14,2.16021019990626e-15,-2.3473642097232566e-14)
    sum e = 3.107438099189586e-09
    sum de = -2.8016227087412577e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.59e-03 |
|       force |  5.16e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023604644194114856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1292e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.849736136644378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0117979527939516, dt = 0.0023604644194114856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 274.23 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4245876736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1425533998685848e-15,-4.2697320042232707e-16,2.292468065406322e-14)
    sum a = (-1.571276699942331e-14,2.13486600232535e-15,-2.5221542425120927e-14)
    sum e = 3.106790693076705e-09
    sum de = -2.6839646733579137e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.59e-03 |
|       force |  5.20e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002360743209198035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7639e+04 | 9216 |      1 | 3.334e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.484553481722223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.014158417213363, dt = 0.002360743209198035 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 317.84 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.425455729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1056797466294203e-15,-4.2196324204359404e-16,2.2863076140791986e-14)
    sum a = (-1.5528398732114407e-14,2.1098162100015883e-15,-2.6949201535726788e-14)
    sum e = 3.10617095925873e-09
    sum de = -2.566583640062226e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.60e-03 |
|       force |  5.22e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023609303154536656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1366e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.924510727555337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0165191604225612, dt = 0.0023609303154536656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 284.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4275173611111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.069235902379918e-15,-4.1701168105643586e-16,2.2797411674164512e-14)
    sum a = (-1.5346179512644874e-14,2.0850584043038073e-15,-2.8656468047595487e-14)
    sum e = 3.1055788561640027e-09
    sum de = -2.449535343944208e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.60e-03 |
|       force |  5.22e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023610886901757966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.955365900759354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0188800907380149, dt = 0.0023610886901757966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.0%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 317.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.428927951388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.033217314934823e-15,-4.121178989673041e-16,2.2727735842919062e-14)
    sum a = (-1.516608657536269e-14,2.060589495554995e-15,-3.0343242509775104e-14)
    sum e = 3.1050143096372314e-09
    sum de = -2.3328714607966413e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  5.23e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023612451896535755 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.960e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71701401407263 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0212411794281906, dt = 0.0023612451896535755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 273.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4306640625000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9976190736617457e-15,-4.072812285645289e-16,2.2654096695444862e-14)
    sum a = (-1.49880953679309e-14,2.0364061428725465e-15,-3.200944810406771e-14)
    sum e = 3.1044772268566954e-09
    sum de = -2.2166413269682638e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  5.24e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023614051547245192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.056261746041653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0236024246178441, dt = 0.0023614051547245192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 312.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.432183159722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9624362484414337e-15,-4.0250100001415167e-16,2.257654225972679e-14)
    sum a = (-1.4812181241289618e-14,2.0125050003034205e-15,-3.365501610982021e-14)
    sum e = 3.1039675024877027e-09
    sum de = -2.1008931563112236e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.25e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361569874118143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1237e+04 | 9216 |      1 | 2.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81333247263917 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.50s (niter = 8) global walltime = 182.39s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0259638297725686, dt = 0.002361569874118143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 290.19 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4337022569444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.92766394971492e-15,-3.977765489748887e-16,2.249512066118478e-14)
    sum a = (-1.463831974872392e-14,1.9888827449818444e-15,-3.527987885960717e-14)
    sum e = 3.103485019788157e-09
    sum de = -1.985674228887679e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.26e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361730540203771 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.968e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.646465916252307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0283253996466868, dt = 0.002361730540203771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 303.88 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.433919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.893297475938662e-15,-3.9310723665823443e-16,2.2409880480367977e-14)
    sum a = (-1.446648737980011e-14,1.9655361828399366e-15,-3.688396363183527e-14)
    sum e = 3.1030296528452495e-09
    sum de = -1.8710312456562998e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.28e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361812054914079 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9704e+04 | 9216 |      1 | 3.103e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.403684784208618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0306871301868905, dt = 0.002361812054914079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 294.24 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.435221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.859333262529554e-15,-3.8849257875172766e-16,2.2320873282418642e-14)
    sum a = (-1.4296666312169937e-14,1.9424628930623595e-15,-3.8467149788752334e-14)
    sum e = 3.1026012785637774e-09
    sum de = -1.7570135841335031e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.31e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361909304763793 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1255e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83559957355745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0330489422418045, dt = 0.002361909304763793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 331.39 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.435655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.825766376062175e-15,-3.839319049574498e-16,2.2228147769338194e-14)
    sum a = (-1.4128831880130578e-14,1.9196595253939743e-15,-4.002938371790927e-14)
    sum e = 3.1021997421386473e-09
    sum de = -1.6436649948782514e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.32e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002362023947396141 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.978e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.550734547658447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0354108515465683, dt = 0.002362023947396141 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 295.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.436740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.792591941665616e-15,-3.794245529310675e-16,2.213175247896883e-14)
    sum a = (-1.3962959708522872e-14,1.8971227646194317e-15,-4.1570614396619014e-14)
    sum e = 3.1018248798216633e-09
    sum de = -1.531028213799445e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.34e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023621570094366877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.066052682356702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0377728754939644, dt = 0.0023621570094366877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 291.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4373914930555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.759805135538496e-15,-3.749698672786852e-16,2.2031735948905418e-14)
    sum a = (-1.379902567785098e-14,1.874849336573171e-15,-4.309079112215146e-14)
    sum e = 3.1014765183076986e-09
    sum de = -1.4191449306709477e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.36e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002362308856979342 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.960e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.725630048327933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0401350325034011, dt = 0.002362308856979342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 301.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4376085069444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.72740119392167e-15,-3.7056720075263354e-16,2.1928146743322676e-14)
    sum a = (-1.3637005969598473e-14,1.8528360035286966e-15,-4.4589864245472917e-14)
    sum e = 3.1011544751094943e-09
    sum de = -1.3080558602281587e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.38e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023624791850459115 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1064e+04 | 9216 |      1 | 2.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.665472699333357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0424973413603804, dt = 0.0023624791850459115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 308.83 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.439236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6953754214681593e-15,-3.6621591540668157e-16,2.1821033480323157e-14)
    sum a = (-1.34768771071811e-14,1.8310795775136704e-15,-4.606778483589343e-14)
    sum e = 3.1008585588780314e-09
    sum de = -1.1978007022596995e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.41e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023626670247473215 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7761e+04 | 9216 |      1 | 3.320e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.619060890710337 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.85s (niter = 6) global walltime = 184.81s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0448598205454263, dt = 0.0023626670247473215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 339.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.439236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6637231988828464e-15,-3.6191538362108506e-16,2.171044486587242e-14)
    sum a = (-1.3318615994762772e-14,1.8095769183996133e-15,-4.752450414807563e-14)
    sum e = 3.100588569688414e-09
    sum de = -1.0884183222356219e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  5.44e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023628707712933447 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9420e+04 | 9216 |      1 | 3.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.15213315969739 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0472224875701737, dt = 0.0023628707712933447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 310.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.439453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.632439989590496e-15,-3.576649890242122e-16,2.1596429732757064e-14)
    sum a = (-1.3162199947630039e-14,1.7883249446146727e-15,-4.8959969633695915e-14)
    sum e = 3.100344299238299e-09
    sum de = -9.799466644697707e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  5.47e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363088229133588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8645e+04 | 9216 |      1 | 3.217e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.43912418845648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.049585358341467, dt = 0.002363088229133588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 308.10 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4396701388888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.601521345277439e-15,-3.534641272313613e-16,2.1479037095100846e-14)
    sum a = (-1.3007606726319055e-14,1.7673206365481405e-15,-5.03741247747191e-14)
    sum e = 3.1001255310444606e-09
    sum de = -8.724227485586002e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  5.51e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023631601486785187 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1005e+04 | 9216 |      1 | 2.972e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62014379279 (tsim/hr)                                [sph::Model][rank=0]
---------------- t = 1.0519484465706006, dt = 0.0023631601486785187 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 322.86 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4401041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5709649461431653e-15,-3.4931248304983166e-16,2.135832408422231e-14)
    sum a = (-1.2854824730991498e-14,1.7465624150959573e-15,-5.1766820504456867e-14)
    sum e = 3.0999320541595314e-09
    sum de = -7.658897799959955e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  5.55e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363236213902201 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6336e+04 | 9216 |      1 | 3.499e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.310936574035402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.054311606719279, dt = 0.002363236213902201 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 304.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
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.440646701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5407664829769444e-15,-3.4520947100153316e-16,2.1234341277803176e-14)
    sum a = (-1.2703832415944636e-14,1.726047354977926e-15,-5.313799931083152e-14)
    sum e = 3.099763629847514e-09
    sum de = -6.603829959169107e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  5.60e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023633188629089198 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.046e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.927735983180572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0566748429331811, dt = 0.0023633188629089198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 311.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.440646701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.510921691450701e-15,-3.411545116955799e-16,2.1107139031989713e-14)
    sum a = (-1.255460845817256e-14,1.7057725582695193e-15,-5.4487600957489106e-14)
    sum e = 3.0996200126564896e-09
    sum de = -5.559365448156858e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  5.65e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023633139569710993 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7321e+04 | 9216 |      1 | 3.373e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.22229793116514 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.56s (niter = 5) global walltime = 186.74s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.05903816179609, dt = 0.0023633139569710993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 320.63 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.440646701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4814275419542106e-15,-3.3714719350608734e-16,2.0976772954651567e-14)
    sum a = (-1.2407137709715359e-14,1.6857359663334558e-15,-5.581551092213144e-14)
    sum e = 3.099500954568981e-09
    sum de = -4.525876186198405e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.71e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363253218199156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8263e+04 | 9216 |      1 | 3.261e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.09131098092295 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0614014757530612, dt = 0.002363253218199156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 294.12 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.440646701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4522805936723763e-15,-3.3318704893735277e-16,2.084329763476205e-14)
    sum a = (-1.2261402968614657e-14,1.665935244741965e-15,-5.712163416343196e-14)
    sum e = 3.099406193815402e-09
    sum de = -3.503708449352921e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.71e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363209672976922 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.025e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.124095177111382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0637647289712604, dt = 0.002363209672976922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 322.26 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (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.440646701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4234765316202185e-15,-3.2927349171153903e-16,2.070676388639553e-14)
    sum a = (-1.2117382658655042e-14,1.646367459116686e-15,-5.840591540633902e-14)
    sum e = 3.099335456671355e-09
    sum de = -2.493166029104608e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.73e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023631857184253356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8284e+04 | 9216 |      1 | 3.258e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.10933306205249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0661279386442373, dt = 0.0023631857184253356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 327.71 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.4409722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.395011081071712e-15,-3.254059410351918e-16,2.0567222348306683e-14)
    sum a = (-1.1975055404616446e-14,1.627029705133495e-15,-5.966829704142944e-14)
    sum e = 3.0992884635530444e-09
    sum de = -1.4945414359286732e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.75e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363183031819445 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9722e+04 | 9216 |      1 | 3.101e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.436906890633946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0684911243626627, dt = 0.002363183031819445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 289.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4409722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3668800062010193e-15,-3.2158382139565685e-16,2.0424723620075142e-14)
    sum a = (-1.1834400031075246e-14,1.607919107610449e-15,-6.090872017349859e-14)
    sum e = 3.0992649286756964e-09
    sum de = -5.081172941260854e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.79e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023632025313192005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1482e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.061443599638334 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 188.30s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.070854307394482, dt = 0.0023632025313192005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 314.74 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.441189236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3390791192870984e-15,-3.178065638103596e-16,2.0279318304933782e-14)
    sum a = (-1.169539559560182e-14,1.5890328178257311e-15,-6.212712548878642e-14)
    sum e = 3.0992645603300003e-09
    sum de = 4.658339802144672e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.84e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023632443579402226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7948e+04 | 9216 |      1 | 3.298e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.799898710532965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0732175099258012, dt = 0.0023632443579402226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 312.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4408637152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3116042894489053e-15,-3.140736070328153e-16,2.0131057056883208e-14)
    sum a = (-1.1558021446996609e-14,1.570368035074151e-15,-6.332345287515036e-14)
    sum e = 3.0992870611436534e-09
    sum de = 1.4270504733177376e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.91e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023633078814067343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.07720944464004 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0755807542837414, dt = 0.0023633078814067343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 274.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.4408637152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2844514506103366e-15,-3.103843986001919e-16,1.9979990634652626e-14)
    sum a = (-1.1422257253123002e-14,1.551921993205011e-15,-6.449764145520482e-14)
    sum e = 3.0993321283050102e-09
    sum de = 2.3752800114904602e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  5.98e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023633917279817407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9489e+04 | 9216 |      1 | 3.125e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.22287764198783 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 189.23s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0779440621651482, dt = 0.0023633917279817407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 287.47 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4406467013888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.257616608598367e-15,-3.067383958368489e-16,1.982616995780061e-14)
    sum a = (-1.1288083042812147e-14,1.5336919784721718e-15,-6.564962835738129e-14)
    sum e = 3.0993994537186683e-09
    sum de = 3.310279095512519e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.01e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363493827939745 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.808777480142737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0803074538931299, dt = 0.002363493827939745 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 273.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4404296875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2310958471066924e-15,-3.031350666449628e-16,1.9669646168213276e-14)
    sum a = (-1.1155479235248134e-14,1.515675332514834e-15,-6.677934610476287e-14)
    sum e = 3.099488724114854e-09
    sum de = 4.231813776447955e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.05e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635669723395224 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1408e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.996708935428003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0826709477210696, dt = 0.0023635669723395224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.4397786458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.20488582896569e-15,-2.9957395760422093e-16,1.9510473670864363e-14)
    sum a = (-1.1024429144348092e-14,1.4978697878934468e-15,-6.788670363987739e-14)
    sum e = 3.0995996192521554e-09
    sum de = 5.139641397450217e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.07e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635397065654134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.117029458450645 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.62s (niter = 2) global walltime = 190.12s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.085034514693409, dt = 0.0023635397065654134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.4393446180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.178984025774459e-15,-2.960547251836795e-16,1.9348712094414968e-14)
    sum a = (-1.0894920127422148e-14,1.480273626567514e-15,-6.897157984836782e-14)
    sum e = 3.099731808328777e-09
    sum de = 6.033502999274137e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.09e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635216158104 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.970433975896324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.0873980543999744, dt = 0.0023635216158104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 319.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.438151041666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1533866964026044e-15,-2.9257686108301e-16,1.9184414200569104e-14)
    sum a = (-1.0766933482421403e-14,1.4628843047561274e-15,-7.003391033628768e-14)
    sum e = 3.0998849578910195e-09
    sum de = 6.913193285237664e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.11e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635124354151452 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9546e+04 | 9216 |      1 | 3.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.278494443871168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.62s (niter = 2) global walltime = 190.72s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0897615760157848, dt = 0.0023635124354151452 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 287.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.437934027777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1280901648265683e-15,-2.8913986585613045e-16,1.901763276205102e-14)
    sum a = (-1.0640450824391075e-14,1.4456993296080406e-15,-7.107362922992109e-14)
    sum e = 3.100058730958846e-09
    sum de = 7.778515766522346e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.14e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00236351160990562 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9356e+04 | 9216 |      1 | 3.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.10270676848053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.0921250884512, dt = 0.00236351160990562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.0%)
   patch tree reduce : 1.90 us    (0.3%)
   gen split merge   : 1.17 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.2%)
   LB compute        : 629.66 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.6%)
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.437717013888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1030908074359854e-15,-2.85743247157607e-16,1.8848420719943407e-14)
    sum a = (-1.0515454037093548e-14,1.4287162366830067e-15,-7.209067236807363e-14)
    sum e = 3.100252786207244e-09
    sum de = 8.629283356986679e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.16e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00236351830514646 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1348e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94232064813279 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 191.33s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0944886000611056, dt = 0.00236351830514646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 285.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.6%)
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.4375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0783850550116455e-15,-2.823865200477485e-16,1.8676831199538458e-14)
    sum a = (-1.039192527564774e-14,1.411932600831399e-15,-7.308497366356255e-14)
    sum e = 3.1004667781383116e-09
    sum de = 9.465317762060614e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.19e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635314258063822 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.121866161549487 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 191.62s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.096852118366252, dt = 0.0023635314258063822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 270.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4372829861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0539693942924366e-15,-2.7906920718999656e-16,1.8502917542872213e-14)
    sum a = (-1.026984697110809e-14,1.3953460360102719e-15,-7.40564681155363e-14)
    sum e = 3.1007003572204165e-09
    sum de = 1.0286449351458977e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.22e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635496384260646 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7694e+04 | 9216 |      1 | 3.328e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.568889815413606 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 191.96s (max_walltime = 193.27s)  [SPH][rank=0]
---------------- t = 1.0992156497920584, dt = 0.0007843502079414311 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.6%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 307.18 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
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.4370659722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.046058505639722e-15,-2.7799436867000877e-16,1.8443683257876627e-14)
    sum a = (-1.0230292528479122e-14,1.3899718430590149e-15,-7.436871558274278e-14)
    sum e = 3.1007903506406705e-09
    sum de = 1.0549432811220602e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.23e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363556466280747 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1330e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.599096977441947 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 192.25s (max_walltime = 193.27s)  [SPH][rank=0]
Info: iteration since start : 490                                                     [SPH][rank=0]
Info: time since start : 192.25076647600002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 11):
   -> t = 1.0999999999999999 >= 1.0999999999999999
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.0999999999999999 -> 1.2

[Simulation] Evolve until next trigger(s) :
   -> t = 1.2 (current = 1.0999999999999999)
   -> iter = None (current = 489)
   -> walltime = 193.271443312 (current = 195.305189382)

Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = 193.27s)      [SPH][rank=0]
---------------- t = 1.0999999999999999, dt = 0.002363556466280747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 333.13 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.4364149305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.021894143849517e-15,-2.7471119935729945e-16,1.8267786143581938e-14)
    sum a = (-1.0109470718280449e-14,1.3735559957505583e-15,-7.531488241537817e-14)
    sum e = 3.1010410997734536e-09
    sum de = 1.1356750853600007e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.26e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635762977293005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9152e+04 | 9216 |      1 | 3.161e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.915359920174478 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 195.62s > 193.27s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 6):
   -> walltime = 195.621948167 >= 193.271443312
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000006.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (57.0%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000006.sham              [Shamrock Dump][rank=0]
              - took 1.40 ms, bandwidth = 2.48 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 195.621948167 -> 225.621948167

[Simulation] Evolve until next trigger(s) :
   -> t = 1.2 (current = 1.1023635564662806)
   -> iter = None (current = 490)
   -> walltime = 225.621948167 (current = 195.62583075900002)

Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = 225.62s)      [SPH][rank=0]
---------------- t = 1.1023635564662806, dt = 0.0023635762977293005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (1.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 266.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4348958333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.998142423062823e-15,-2.714840948531953e-16,1.8088655513274517e-14)
    sum a = (-9.990712115258914e-15,1.3574204751992256e-15,-7.623292610543887e-14)
    sum e = 3.101319047001231e-09
    sum de = 1.2142480447978227e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.30e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023635220985642304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.05991184319463 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.33s (niter = 25) global walltime = 195.92s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.1047271327640098, dt = 0.0023635220985642304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 267.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4342447916666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9746695017076932e-15,-2.6829487033003616e-16,1.7907392374634347e-14)
    sum a = (-9.873347508363232e-15,1.3414743517871418e-15,-7.712797381792572e-14)
    sum e = 3.101615307019752e-09
    sum de = 1.291281645188784e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.34e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363417424325159 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.02170022150278 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.107090654862574, dt = 0.002363417424325159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.4329427083333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9514733570909897e-15,-2.6514325098011344e-16,1.7724049044888094e-14)
    sum a = (-9.757366785033136e-15,1.3257162540967312e-15,-7.799993432069092e-14)
    sum e = 3.1019295786738914e-09
    sum de = 1.3667571639684615e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.39e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002363208653554422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1343e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.93642652354038 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1094540722868993, dt = 0.002363208653554422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 272.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.431423611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.928551718899607e-15,-2.6202892833755466e-16,1.7538688521800237e-14)
    sum a = (-9.642758594428653e-15,1.3101446422659996e-15,-7.884873633178068e-14)
    sum e = 3.102261475500606e-09
    sum de = 1.4406591982996105e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.43e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023630112463659467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1396e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.98287288860161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1118172809404536, dt = 0.0023630112463659467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 308.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4297960069444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9059011934291624e-15,-2.5895144129741536e-16,1.7351365122962198e-14)
    sum a = (-9.529505968216009e-15,1.294757207027084e-15,-7.967435636270306e-14)
    sum e = 3.102610622005351e-09
    sum de = 1.512977027170457e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.48e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023628277407743564 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.01539371703614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1141802921868196, dt = 0.0023628277407743564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 308.74 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.429144965277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.88351842098606e-15,-2.559103333924743e-16,1.716213286880175e-14)
    sum a = (-9.41759210494516e-15,1.2795516673842167e-15,-8.047677872263239e-14)
    sum e = 3.10297664184395e-09
    sum de = 1.583700800406625e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.53e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002362660164830612 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.01118624558773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.116543119927594, dt = 0.002362660164830612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 315.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.428168402777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8614000678616496e-15,-2.529051516745473e-16,1.697104559661588e-14)
    sum a = (-9.307000339784143e-15,1.2645257577397777e-15,-8.125599474759115e-14)
    sum e = 3.1033591571631687e-09
    sum de = 1.6528215746370248e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.57e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023625099938184586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9103e+04 | 9216 |      1 | 3.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.859740891051 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.1189057800924245, dt = 0.0023625099938184586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.4268663194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.839542831925391e-15,-2.4993544749354806e-16,1.6778156985641784e-14)
    sum a = (-9.197714159011159e-15,1.2496772378776537e-15,-8.201200304797593e-14)
    sum e = 3.1037577887688388e-09
    sum de = 1.7203312658224805e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.57e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023623781228830285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.067454215378216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.121268290086243, dt = 0.0023623781228830285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 279.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.6%)
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.424045138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8179434480630505e-15,-2.470007772143574e-16,1.658352058523978e-14)
    sum a = (-9.08971723955439e-15,1.2350038857448551e-15,-8.274480765957911e-14)
    sum e = 3.1041721562564892e-09
    sum de = 1.786222692770128e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  6.59e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023622648548288394 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1412e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.986720416098123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.123630668209126, dt = 0.0023622648548288394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (0.9%)
   patch tree reduce : 1.94 us    (0.3%)
   gen split merge   : 1.22 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.2%)
   LB compute        : 647.10 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (0.6%)
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.4219835069444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7965986932676073e-15,-2.4410070294241177e-16,1.6387189853395282e-14)
    sum a = (-8.982993466382392e-15,1.2205035139020997e-15,-8.345442065144181e-14)
    sum e = 3.1046018781232764e-09
    sum de = 1.8504894688599664e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.62e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023621699059848482 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.090e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.521434138392884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1259929330639549, dt = 0.0023621699059848482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 290.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.421006944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.775505391344873e-15,-2.4123479313108897e-16,1.6189218185491974e-14)
    sum a = (-8.877526956705871e-15,1.2061739661918861e-15,-8.414086150200727e-14)
    sum e = 3.105046571829147e-09
    sum de = 1.9131260321155443e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.64e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023620924270865928 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1560e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.12123548257806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1283551029699397, dt = 0.0023620924270865928 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 338.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.419704861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7546604170565629e-15,-2.3840262315304436e-16,1.5989658948773305e-14)
    sum a = (-8.773302085554965e-15,1.1920131164878175e-15,-8.480415463622923e-14)
    sum e = 3.1055058538574603e-09
    sum de = 1.9741275960169336e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.68e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002362002559288582 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9705e+04 | 9216 |      1 | 3.103e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.408363084714843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1307171953970263, dt = 0.002362002559288582 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 309.75 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4184027777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7340609494665206e-15,-2.3560380973916726e-16,1.578856793863475e-14)
    sum a = (-8.670304747577678e-15,1.1780190489207357e-15,-8.54443204174262e-14)
    sum e = 3.1059793341190478e-09
    sum de = 2.033489380293429e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  6.73e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361867388435542 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1488e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.052769438746303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1330791979563148, dt = 0.002361867388435542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 335.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.4162326388888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7137044794234336e-15,-2.328380119762081e-16,1.558600374811631e-14)
    sum a = (-8.568522397522855e-15,1.16419006006993e-15,-8.60613773087126e-14)
    sum e = 3.1064666144386995e-09
    sum de = 2.0912066886292295e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  6.78e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361692671952088 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9511e+04 | 9216 |      1 | 3.123e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.226802237813082 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1354410653447504, dt = 0.002361692671952088 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 309.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.4147135416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6935884610744404e-15,-2.3010488396138005e-16,1.5382024520704975e-14)
    sum a = (-8.467942306092802e-15,1.1505244205668417e-15,-8.665535317459746e-14)
    sum e = 3.106967295926495e-09
    sum de = 2.147275936414934e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  6.85e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023615275339642678 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1402e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.96964752752715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1378027580167025, dt = 0.0023615275339642678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 297.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4117838541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6737099517949342e-15,-2.274040258840458e-16,1.517668412400454e-14)
    sum a = (-8.368549758948334e-15,1.137020130035558e-15,-8.722629464134332e-14)
    sum e = 3.1074809889629572e-09
    sum de = 2.201695533007957e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  6.93e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023613725522576194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1173e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.756666479492754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1401642855506668, dt = 0.0023613725522576194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 315.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
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.410373263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6540660472102729e-15,-2.247350431345309e-16,1.4970036198999514e-14)
    sum a = (-8.27033023603059e-15,1.123675215889946e-15,-8.777425418564941e-14)
    sum e = 3.1080073042906937e-09
    sum de = 2.2544646064650638e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.03e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002361227959229661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1188e+04 | 9216 |      1 | 2.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.768416023261814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1425256581029244, dt = 0.002361227959229661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 302.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.408528645833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6346538786677636e-15,-2.22097545954819e-16,1.4762134207601706e-14)
    sum a = (-8.173269392980965e-15,1.1104877298547851e-15,-8.829929017758485e-14)
    sum e = 3.1085458528219373e-09
    sum de = 2.3055829814337342e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.13e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023610936396431473 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8397e+04 | 9216 |      1 | 3.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.19192206969634 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.144886886062154, dt = 0.0023610936396431473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 293.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4072265625000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6154706156769514e-15,-2.1949114976926076e-16,1.4553031450353208e-14)
    sum a = (-8.077353078192341e-15,1.097455748647584e-15,-8.880146595471807e-14)
    sum e = 3.1090962457109167e-09
    sum de = 2.355051174927789e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.25e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002360969137439825 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.924903777840317 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1472479797017971, dt = 0.002360969137439825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 304.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.4057074652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5965134680478483e-15,-2.1691547548093862e-16,1.4342781087851277e-14)
    sum a = (-7.982567340026472e-15,1.084577376580389e-15,-8.928084968545061e-14)
    sum e = 3.109658094423509e-09
    sum de = 2.402870360739962e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.34e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023608536716581093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7848e+04 | 9216 |      1 | 3.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.682536376048933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.149608948839237, dt = 0.0023608536716581093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 300.97 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.4039713541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.577779687735161e-15,-2.143701497187643e-16,1.4131436160965653e-14)
    sum a = (-7.888898438070924e-15,1.071850749198508e-15,-8.973751350221006e-14)
    sum e = 3.1102310107862435e-09
    sum de = 2.4490423355316603e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.42e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023607461618988797 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1325e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.88782363968437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.151969802510895, dt = 0.0023607461618988797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.4%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 269.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.403103298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5592665703109455e-15,-2.118548050288202e-16,1.3919049612165686e-14)
    sum a = (-7.79633285188296e-15,1.0592740253834994e-15,-9.01715328310084e-14)
    sum e = 3.110814607034216e-09
    sum de = 2.4935695092757885e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.54e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023606452630415974 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.93033676065569 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.154330548672794, dt = 0.0023606452630415974 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 304.91 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.4010416666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.540971456021466e-15,-2.093690800450954e-16,1.3705674305587789e-14)
    sum a = (-7.704857281043067e-15,1.0468454002564116e-15,-9.058298755263354e-14)
    sum e = 3.111408495860718e-09
    sum de = 2.536454912700212e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.40e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002360549407445678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.92985866554653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1566911939358355, dt = 0.002360549407445678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 340.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3991970486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5228917304188986e-15,-2.0691261954304048e-16,1.3491363038691242e-14)
    sum a = (-7.614458652285572e-15,1.0345630973324621e-15,-9.097196291602429e-14)
    sum e = 3.1120122904764423e-09
    sum de = 2.577702155739935e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.31e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002360456852827413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8065e+04 | 9216 |      1 | 3.284e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.87804662203349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1590517433432812, dt = 0.002360456852827413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 313.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3972439236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5050248245270139e-15,-2.0448507448189794e-16,1.3276168547626803e-14)
    sum a = (-7.525124122162949e-15,1.0224253717285011e-15,-9.133854744986526e-14)
    sum e = 3.112625604669122e-09
    sum de = 2.6173154494942963e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.27e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023603657350397063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1443e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.99187863598134 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1614122001961087, dt = 0.0023603657350397063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 281.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.396484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4873682145492294e-15,-2.0208610195668628e-16,1.3060143516441301e-14)
    sum a = (-7.436841072297477e-15,1.0104305102506868e-15,-9.168283207339167e-14)
    sum e = 3.1132480528833043e-09
    sum de = 2.65529958458377e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.27e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002360274124461952 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7658e+04 | 9216 |      1 | 3.332e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.501440248414394 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.44s (niter = 18) global walltime = 203.49s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.1637725659311484, dt = 0.002360274124461952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 294.82 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
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.3956163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.469919421141614e-15,-1.9971536509850695e-16,1.2843340581431336e-14)
    sum a = (-7.34959710658383e-15,9.985768253762367e-16,-9.200491166752346e-14)
    sum e = 3.113879250309827e-09
    sum de = 2.691659947493415e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  7.31e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00236018008365857 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1248e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.809814369412443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1661328400556104, dt = 0.00236018008365857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 300.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.393012152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4526760082650386e-15,-1.9737253293652136e-16,1.2625812323256136e-14)
    sum a = (-7.263380041224051e-15,9.868626651936322e-16,-9.230488554775861e-14)
    sum e = 3.1145188129977195e-09
    sum de = 2.7264024914589975e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  7.40e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023600784746881046 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1424e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.971006876020862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.168493020139269, dt = 0.0023600784746881046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 275.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
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.3907335069444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4356356052765295e-15,-1.9505728336664043e-16,1.240761155356988e-14)
    sum a = (-7.178178026315356e-15,9.752864158320731e-16,-9.258285661460302e-14)
    sum e = 3.115166357087397e-09
    sum de = 2.7595337254486953e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  7.53e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023598455552327063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.977398581461543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.170853098613957, dt = 0.0023598455552327063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3891059027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4187967554869403e-15,-1.9276941848142703e-16,1.2188802294126644e-14)
    sum a = (-7.093983777949647e-15,9.638470930525677e-16,-9.283891836579103e-14)
    sum e = 3.115821466130118e-09
    sum de = 2.791059090485942e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  7.71e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002359581519467256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8038e+04 | 9216 |      1 | 3.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.846172699613987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1732129441691896, dt = 0.002359581519467256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 299.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3869357638888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4021572651766332e-15,-1.9050864021080598e-16,1.1969439164968429e-14)
    sum a = (-7.010786325634646e-15,9.525432010034984e-16,-9.307318242140593e-14)
    sum e = 3.1164837514411876e-09
    sum de = 2.8209863312141705e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  7.94e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023593211586709164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.077e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.604428108154796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1755725256886569, dt = 0.0023593211586709164 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 316.35 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.384440104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.38571472424512e-15,-1.8827462110951857e-16,1.174957325381468e-14)
    sum a = (-6.928573622005261e-15,9.413731050187445e-16,-9.328576752276584e-14)
    sum e = 3.1171528362598776e-09
    sum de = 2.8493241997479006e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.11e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002359065925403209 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0693e+04 | 9216 |      1 | 3.003e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.286957515553112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1779318468473279, dt = 0.002359065925403209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.6%)
   LB compute        : 281.22 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3833550347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.369466745387502e-15,-1.860670368160812e-16,1.15292552000614e-14)
    sum a = (-6.847333726907335e-15,9.303351838817154e-16,-9.34767957901348e-14)
    sum e = 3.1178283466359707e-09
    sum de = 2.87608196082141e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.15e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023588170936070544 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.277576509246238 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.180290912772731, dt = 0.0023588170936070544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 307.92 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.380859375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3534109626806847e-15,-1.8388556587335915e-16,1.130853521214048e-14)
    sum a = (-6.7670548127719934e-15,9.19427830247243e-16,-9.364639156264667e-14)
    sum e = 3.1185099113983853e-09
    sum de = 2.9012694095569726e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  8.24e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002358575728880213 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1319e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.857933185290424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.182649729866338, dt = 0.002358575728880213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 322.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3799913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3375450330809897e-15,-1.817298899346736e-16,1.1087463083221619e-14)
    sum a = (-6.6877251651274014e-15,9.08649448961513e-16,-9.37946816351428e-14)
    sum e = 3.119197162228378e-09
    sum de = 2.9248968665452545e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  8.38e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002358342665878046 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.025e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.067277774841646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1850083055952183, dt = 0.002358342665878046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 297.84 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3777126736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3218666379770926e-15,-1.7959969398491462e-16,1.0866088207003806e-14)
    sum a = (-6.6093331899220865e-15,8.97998470137271e-16,-9.392179485039724e-14)
    sum e = 3.1198897337140384e-09
    sum de = 2.9469751153342706e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  8.18e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002358118492060931 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.84702083150303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1873666482610963, dt = 0.002358118492060931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.46 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.376085069444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3063734847317845e-15,-1.7749466651573985e-16,1.0644459597504747e-14)
    sum a = (-6.531867422978462e-15,8.874733325170391e-16,-9.402786221932828e-14)
    sum e = 3.1205872633770592e-09
    sum de = 2.9675154028514784e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  8.04e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023579035386173497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1396e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.920465814744343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1897247667531572, dt = 0.0023579035386173497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 285.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.3734809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2910633081501002e-15,-1.7541449976524146e-16,1.042262590871959e-14)
    sum a = (-6.4553165398719466e-15,8.770724989156309e-16,-9.41130175559073e-14)
    sum e = 3.1212893917015937e-09
    sum de = 2.986529404473195e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  7.96e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023576978792522567 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.95292547370933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1920826702917746, dt = 0.0023576978792522567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 302.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3721788194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2759338718332547e-15,-1.73358889875832e-16,1.0200635452803628e-14)
    sum a = (-6.379669360132278e-15,8.667944494682735e-16,-9.417739706451092e-14)
    sum e = 3.121995762146403e-09
    sum de = 3.00402922181488e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  7.94e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002357499683188078 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9072e+04 | 9216 |      1 | 3.170e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.774320047573987 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.194440368171027, dt = 0.002357499683188078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 331.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.370768229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2609829799354016e-15,-1.7132753850326543e-16,9.978536375334382e-15)
    sum a = (-6.30491490118804e-15,8.566376927207175e-16,-9.422113908690796e-14)
    sum e = 3.1227060206638293e-09
    sum de = 3.0200273609412625e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  7.98e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002357253067043911 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.329920043645373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.196797867854215, dt = 0.002357253067043911 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 339.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3699001736111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2462088167536757e-15,-1.6932019895040678e-16,9.756381745346324e-15)
    sum a = (-6.231044083056043e-15,8.466009949057344e-16,-9.424438368289057e-14)
    sum e = 3.123419799444283e-09
    sum de = 3.034536378881907e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.07e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023570138235345754 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1396e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.90937666516505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.199155120921259, dt = 0.0008448790787409788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 288.96 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3683810763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.241031404075611e-15,-1.6861675300014012e-16,9.676729240578924e-15)
    sum a = (-6.20515702010384e-15,8.430837649898052e-16,-9.424765436626389e-14)
    sum e = 3.12367784195802e-09
    sum de = 3.0387440042182134e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.12e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023569300869624036 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9482e+04 | 9216 |      1 | 3.126e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.72980972491738 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 533                                                     [SPH][rank=0]
Info: time since start : 208.32140813700002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 12):
   -> t = 1.2 >= 1.2
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.2 -> 1.3

[Simulation] Evolve until next trigger(s) :
   -> t = 1.3 (current = 1.2)
   -> iter = None (current = 532)
   -> walltime = 225.621948167 (current = 211.136432783)

Info: evolve_until (target_time = 1.30s, niter_max = -1, max_walltime = 225.62s)      [SPH][rank=0]
---------------- t = 1.2, dt = 0.0023569300869624036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.1%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 22.30 us   (6.4%)
   LB compute        : 305.15 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.367947048611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2264172185192696e-15,-1.666311493254149e-16,9.454592726704403e-15)
    sum a = (-6.132086092059943e-15,8.331557467505885e-16,-9.424337367888381e-14)
    sum e = 3.1243942759112246e-09
    sum de = 3.05189348648044e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.30e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023567022966168912 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.951778037839187 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.52s (niter = 12) global walltime = 211.43s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2023569300869623, dt = 0.0023567022966168912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 313.32 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3645833333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2120518286777124e-15,-1.6467934908612107e-16,9.232494196183771e-15)
    sum a = (-6.060259142318858e-15,8.233967441284573e-16,-9.421884987873477e-14)
    sum e = 3.125115062377155e-09
    sum de = 3.062940486474944e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.55e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023564836808030298 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1326e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83844826497244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2047136323835792, dt = 0.0023564836808030298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.0%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.4%)
   LB compute        : 321.83 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.36328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1978555642759733e-15,-1.6275052762766115e-16,9.01049791164359e-15)
    sum a = (-5.989277820486559e-15,8.137526382200338e-16,-9.417432122767598e-14)
    sum e = 3.1258381382879e-09
    sum de = 3.072548870878357e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.89e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023562745928680925 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1477e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.97506476413076 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2070701160643822, dt = 0.0023562745928680925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 266.07 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3617621527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1838268142810777e-15,-1.608444660505104e-16,8.788649816755117e-15)
    sum a = (-5.919134072033509e-15,8.04222330216822e-16,-9.410993862694835e-14)
    sum e = 3.126563244839511e-09
    sum de = 3.080729378935895e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.99e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023560507571214195 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8862e+04 | 9216 |      1 | 3.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.56560345218749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2094263906572502, dt = 0.0023560507571214195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 316.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.359157986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1699636729353358e-15,-1.5896090543181059e-16,8.566997876149404e-15)
    sum a = (-5.849818364771536e-15,7.948045276346543e-16,-9.402585647182917e-14)
    sum e = 3.1272900419620745e-09
    sum de = 3.0874969671585603e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.61e-03 |
|       force |  8.98e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002355804896693375 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9151e+04 | 9216 |      1 | 3.162e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.82817088568472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2117824414143716, dt = 0.002355804896693375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.357964409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1562642978491851e-15,-1.5709959544431028e-16,8.345590353976596e-15)
    sum a = (-5.781321489696678e-15,7.854979767512095e-16,-9.392223159748042e-14)
    sum e = 3.128018191410061e-09
    sum de = 3.092866955038602e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  9.02e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023555689305493764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7899e+04 | 9216 |      1 | 3.303e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.673890944895383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.214138246311065, dt = 0.0023555689305493764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 268.17 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.355360243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1427266792075022e-15,-1.5526026302424758e-16,8.124472123322324e-15)
    sum a = (-5.71363339531598e-15,7.763013151915048e-16,-9.379922169913687e-14)
    sum e = 3.1287473685251676e-09
    sum de = 3.0968551258321795e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  9.06e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002355343007839064 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1490e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.9750970465573 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2164938152416145, dt = 0.002355343007839064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 309.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3530815972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1293488347261924e-15,-1.534426388347907e-16,7.903687661489317e-15)
    sum a = (-5.646744172859639e-15,7.672131947159883e-16,-9.365698636297056e-14)
    sum e = 3.1294772525939675e-09
    sum de = 3.0994775537825034e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.62e-03 |
|       force |  8.89e-02 |
| dust1_fluid |  2.36e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023551270522089137 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0234e+04 | 9216 |      1 | 3.048e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.817233444201126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2188491582494536, dt = 0.0023551270522089137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (0.3%)
   patch tree reduce : 1.73 us    (0.1%)
   gen split merge   : 1.37 us    (0.0%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.0%)
   LB compute        : 2.73 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 5.24 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (74.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.350911458333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1161288082989898e-15,-1.516464571055704e-16,7.683281065773958e-15)
    sum a = (-5.580644042882632e-15,7.582322849412847e-16,-9.34956870258283e-14)
    sum e = 3.1302075268037444e-09
    sum de = 3.1007506072751093e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  8.79e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002354920766528861 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1152e+04 | 9216 |      1 | 2.958e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.658706596518332 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2212042853016625, dt = 0.002354920766528861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 308.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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.3488498263888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1030646708542176e-15,-1.4987145574354027e-16,7.463296071052377e-15)
    sum a = (-5.515323353607639e-15,7.493572792547054e-16,-9.331548681834372e-14)
    sum e = 3.130937878233098e-09
    sum de = 3.100690936483457e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  8.74e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023547111351361464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9121e+04 | 9216 |      1 | 3.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.78795701819601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2235592060681912, dt = 0.0023547111351361464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.7%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 340.73 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 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.345703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0901545900631812e-15,-1.481173857817382e-16,7.243777233759095e-15)
    sum a = (-5.450772950618307e-15,7.405869282946441e-16,-9.311655150957882e-14)
    sum e = 3.1316679939614814e-09
    sum de = 3.0993154570921415e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.63e-03 |
|       force |  8.74e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002354501034300032 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.908878164574514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2259139172033273, dt = 0.002354501034300032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 287.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3432074652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0773967382894288e-15,-1.4638399891435837e-16,7.024768434518607e-15)
    sum a = (-5.3869836921836395e-15,7.319199952538324e-16,-9.2899048650185e-14)
    sum e = 3.132397566054514e-09
    sum de = 3.096641385788327e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.79e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002354297624629736 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7967e+04 | 9216 |      1 | 3.295e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.72182042615867 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2282684182376273, dt = 0.002354297624629736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 280.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.340060763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0647892713166485e-15,-1.446710445596897e-16,6.806312480310696e-15)
    sum a = (-5.323946356166439e-15,7.233552228317092e-16,-9.266314674082565e-14)
    sum e = 3.133126292963981e-09
    sum de = 3.092686190230477e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.89e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023541008984269583 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8768e+04 | 9216 |      1 | 3.204e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.455991863516804 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.46s (niter = 8) global walltime = 215.14s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2306227158622571, dt = 0.0023541008984269583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 332.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.338541666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0523303687417113e-15,-1.4297827539143838e-16,6.5884517749588795e-15)
    sum a = (-5.261651843539633e-15,7.148913773787627e-16,-9.240901606079767e-14)
    sum e = 3.133853877348619e-09
    sum de = 3.087467577255196e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.03e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235391070468562 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.014e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.122417207230466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.232976816760684, dt = 0.00235391070468562 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 313.10 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.335503472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0400182339266883e-15,-1.4130544729851556e-16,6.3712283274710755e-15)
    sum a = (-5.200091169479081e-15,7.065272364873314e-16,-9.21368287536343e-14)
    sum e = 3.134580026079111e-09
    sum de = 3.0810034891502587e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.13e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002353726750228689 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4206e+04 | 9216 |      1 | 3.807e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.25769132260777 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2353307274653698, dt = 0.002353726750228689 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 332.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (59.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3344184027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.027851094402492e-15,-1.3965231946259054e-16,6.154683761263063e-15)
    sum a = (-5.13925547172789e-15,6.982615978571133e-16,-9.184675898300519e-14)
    sum e = 3.1353044502431778e-09
    sum de = 3.0733120837799237e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.18e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023535112884372836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1163e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.652053784939472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2376844542155985, dt = 0.0023535112884372836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 348.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.3324652777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0158273939401564e-15,-1.3801868043718655e-16,5.938862749687934e-15)
    sum a = (-5.0791369707961505e-15,6.900934016039913e-16,-9.153898816083427e-14)
    sum e = 3.13602685367767e-09
    sum de = 3.064411880039361e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.22e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002353260667220543 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1223e+04 | 9216 |      1 | 2.952e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70452692595851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2400379655040357, dt = 0.002353260667220543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.5%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 269.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.329752604166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0039456054685225e-15,-1.364043227493536e-16,5.723809820367882e-15)
    sum a = (-5.0197280271346974e-15,6.820216145059415e-16,-9.121370132864908e-14)
    sum e = 3.1367469436673246e-09
    sum de = 3.054321713184818e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.13e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002353012288886567 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1388e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.8535920839141 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2423912261712562, dt = 0.002353012288886567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 316.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
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.3275824652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.922040260991354e-16,-1.348090150186754e-16,5.509565602601248e-15)
    sum a = (-4.961020129982201e-15,6.740450748284841e-16,-9.087108128829333e-14)
    sum e = 3.1374644435823765e-09
    sum de = 3.043060539833687e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.09e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352766890458394 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1435e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.893289903048014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2447442384601428, dt = 0.002352766890458394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 287.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.325303819444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.806009723960583e-16,-1.3323252853193973e-16,5.2961702258195454e-15)
    sum a = (-4.903004861425091e-15,6.661626430366358e-16,-9.051131291384216e-14)
    sum e = 3.13817908155726e-09
    sum de = 3.0306475008165865e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.12e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352525179143167 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94779571597852 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2470970053506012, dt = 0.002352525179143167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.323025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.691347782076638e-16,-1.3167463690320743e-16,5.083663308744881e-15)
    sum a = (-4.845673889688197e-15,6.583731843177756e-16,-9.013458306234253e-14)
    sum e = 3.1388905905423753e-09
    sum de = 3.017101934358663e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.20e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352287812264613 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.884922102149762 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.84s (niter = 6) global walltime = 217.59s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2494495305297444, dt = 0.002352287812264613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 307.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3212890625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.578037948522081e-16,-1.3013511613459024e-16,4.872083960775841e-15)
    sum a = (-4.789018974885505e-15,6.506755808122571e-16,-8.974108101615806e-14)
    sum e = 3.1395987083296147e-09
    sum de = 3.0024433587201614e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.29e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002352055378102411 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1325e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.782999603461697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.251801818342009, dt = 0.002352055378102411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 294.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3203125000000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.466063913493898e-16,-1.2861374462491685e-16,4.661470783572244e-15)
    sum a = (-4.733031956475675e-15,6.430687232445948e-16,-8.933099798137761e-14)
    sum e = 3.1403031775638783e-09
    sum de = 2.986691477783022e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.30e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002351828378198175 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9900e+04 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.471304040452406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2541538737201114, dt = 0.002351828378198175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 271.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.78 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.3179253472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.3554095476304e-16,-1.271103032274958e-16,4.451861876463474e-15)
    sum a = (-4.6777047734860365e-15,6.355515162487354e-16,-8.89045271207324e-14)
    sum e = 3.1410037457539415e-09
    sum de = 2.9698661730751874e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.40e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023516072120221263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.87589367240079 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2565057020983097, dt = 0.0023516072120221263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.26 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3157552083333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.24605890501545e-16,-1.2562457528869296e-16,4.2432948424562355e-15)
    sum a = (-4.6230294526335536e-15,6.281228772615587e-16,-8.846186334367268e-14)
    sum e = 3.1417001652739596e-09
    sum de = 2.9519874775813425e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  9.58e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023513921636262335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8365e+04 | 9216 |      1 | 3.249e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.056420388527652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.258857309310332, dt = 0.0023513921636262335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 310.67 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.314236111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.137996227137313e-16,-1.2415634669794806e-16,4.035806795870446e-15)
    sum a = (-4.568998112611313e-15,6.207817337275872e-16,-8.800320375182949e-14)
    sum e = 3.14239219335317e-09
    sum de = 2.933075575166591e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.49e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002351176253250934 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.890166759456722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2612087014739581, dt = 0.002351176253250934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 331.28 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.312282986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.031206272849331e-16,-1.2270541038082348e-16,3.8294349972836705e-15)
    sum a = (-4.515603136183018e-15,6.135270525380252e-16,-8.75287490979125e-14)
    sum e = 3.14307958997274e-09
    sum de = 2.91315084748907e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.41e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350941556582691 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1408e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.84604329014539 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.53s (niter = 5) global walltime = 219.40s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.263559877727209, dt = 0.002350941556582691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 297.05 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.3109809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.92567478719407e-16,-1.2127157265389196e-16,3.624217786891581e-15)
    sum a = (-4.462837393574395e-15,6.063578631839951e-16,-8.703870621627651e-14)
    sum e = 3.1437621147845744e-09
    sum de = 2.8922339812911935e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.33e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507089628911474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9630e+04 | 9216 |      1 | 3.110e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.210548054231833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2659108192837918, dt = 0.0023507089628911474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 305.91 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.309244791666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.821386714470662e-16,-1.1985462896272245e-16,3.420191151152535e-15)
    sum a = (-4.410693357274353e-15,5.992731449604357e-16,-8.653328033861947e-14)
    sum e = 3.1444395385851617e-09
    sum de = 2.8703456428680876e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.27e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023504787404597066 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1310e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.750184900879812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.268261528246683, dt = 0.0023504787404597066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 322.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.3054470486111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.718327182069361e-16,-1.1845437723126734e-16,3.2173905699534224e-15)
    sum a = (-4.3591635905669005e-15,5.922718859163639e-16,-8.601267889373504e-14)
    sum e = 3.1451116371374385e-09
    sum de = 2.847506582273195e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.21e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350251152054945 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1385e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81646991037367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2706120069871427, dt = 0.002350251152054945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 325.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3023003472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.61648148766609e-16,-1.170706177043173e-16,3.0158510035868485e-15)
    sum a = (-4.308240743078244e-15,5.8535308831811825e-16,-8.547711083276672e-14)
    sum e = 3.1457781912131715e-09
    sum de = 2.8237376707351385e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.15e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023500264491902872 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9105e+04 | 9216 |      1 | 3.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.719888050825755 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2729622581391977, dt = 0.0023500264491902872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 314.44 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3008897569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.515835098115413e-16,-1.1570315292053025e-16,2.8156068920694616e-15)
    sum a = (-4.257917549409665e-15,5.785157648108245e-16,-8.492678616703763e-14)
    sum e = 3.1464389866183686e-09
    sum de = 2.7990598524215187e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.11e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023498048662639257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.848435772163217 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.92s (niter = 3) global walltime = 220.91s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.275312284588388, dt = 0.0023498048662639257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 301.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.3002387152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.416373648515945e-16,-1.143517877067447e-16,2.6166921554213822e-15)
    sum a = (-4.208186824261475e-15,5.717589392978837e-16,-8.436191631011634e-14)
    sum e = 3.1470938141926373e-09
    sum de = 2.773494151966784e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.06e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349586614807714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1396e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81772133216847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.277662089454652, dt = 0.002349586614807714 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 322.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
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.298719618055555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.318082941665748e-16,-1.1301632916681362e-16,2.4191401930234002e-15)
    sum a = (-4.159041471646763e-15,5.650816453006731e-16,-8.378271535867677e-14)
    sum e = 3.1477424698168185e-09
    sum de = 2.74706166449079e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  9.03e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023493718773540113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.895189706277367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2800116760694598, dt = 0.0023493718773540113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 327.42 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.3%)
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.2963324652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.22094894727891e-16,-1.1169658668122612e-16,2.222983879150594e-15)
    sum a = (-4.1104744740894824e-15,5.584829335168149e-16,-8.318939957961806e-14)
    sum e = 3.1483847544154236e-09
    sum de = 2.719783537227564e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.99e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349160802315568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.702731849657983 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 221.80s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2823610479468137, dt = 0.002349160802315568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 277.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2950303819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.124957801835863e-16,-1.1039237187901367e-16,2.0282555621923466e-15)
    sum a = (-4.062478901277888e-15,5.51961859224447e-16,-8.258218750727716e-14)
    sum e = 3.1490204739513894e-09
    sum de = 2.691680999820439e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.97e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023489534992817973 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1538e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94056165059815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2847102087491293, dt = 0.0023489534992817973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 332.05 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
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.2928602430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.030095808116128e-16,-1.0910349866427464e-16,1.8349870632642082e-15)
    sum a = (-4.015047903762984e-15,5.455174934179138e-16,-8.196130006464983e-14)
    sum e = 3.149649439435671e-09
    sum de = 2.662775316603628e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.94e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023487500350238637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1421e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.830234460152766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.287059162248411, dt = 0.0023487500350238637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 304.95 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.291449652777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.93634943511076e-16,-1.0782978319031227e-16,1.6432096747375046e-15)
    sum a = (-3.968174716912918e-15,5.391489157578486e-16,-8.132695982302034e-14)
    sum e = 3.150271466912635e-09
    sum de = 2.633087801756584e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.64e-03 |
|       force |  8.89e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023485504305791527 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9494e+04 | 9216 |      1 | 3.125e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.060470805030896 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.61s (niter = 2) global walltime = 222.70s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.289407912283435, dt = 0.0023485504305791527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 297.83 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2901475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.843705317705431e-16,-1.0657104387059168e-16,1.4529541615595907e-15)
    sum a = (-3.921852658138852e-15,5.328552192195238e-16,-8.067939110491353e-14)
    sum e = 3.150886377458839e-09
    sum de = 2.602639808398647e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  8.84e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023483546594267723 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8112e+04 | 9216 |      1 | 3.278e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.790199018743287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2917564627140141, dt = 0.0023483546594267723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 288.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.288845486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.752150256527373e-16,-1.0532710136554917e-16,1.2642507614349737e-15)
    sum a = (-3.8760751283042715e-15,5.266355071136199e-16,-8.001881984544105e-14)
    sum e = 3.1514939971753745e-09
    sum de = 2.5714527112778555e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  8.79e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348162647020726 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1312e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.722964259152974 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 223.32s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2941048173734409, dt = 0.002348162647020726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 309.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.287543402777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.661671217570526e-16,-1.0409777858414802e-16,1.0771291854179752e-15)
    sum a = (-3.8308356077369984e-15,5.2048889295908e-16,-7.934547375579286e-14)
    sum e = 3.152094157175597e-09
    sum de = 2.5395479214095066e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.65e-03 |
|       force |  8.76e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347960451039152 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1153e+04 | 9216 |      1 | 2.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.575363730583003 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 223.62s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2964529800204616, dt = 0.002347960451039152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 308.95 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2854817708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.572255861318374e-16,-1.0288290787313615e-16,8.916197141313193e-16)
    sum a = (-3.786127931621083e-15,5.144145391915604e-16,-7.865958714082454e-14)
    sum e = 3.152686690070665e-09
    sum de = 2.506947076009483e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.74e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023477168125417953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7759e+04 | 9216 |      1 | 3.320e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.459523016081853 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 223.95s (max_walltime = 225.62s)  [SPH][rank=0]
---------------- t = 1.2988009404715009, dt = 0.0011990595284991912 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 396.50 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.2830946180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.527382792872513e-16,-1.0227322538940074e-16,7.981074039815341e-16)
    sum a = (-3.763691396946979e-15,5.113661263970949e-16,-7.830753145295763e-14)
    sum e = 3.1529834006007563e-09
    sum de = 2.489780884882615e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.73e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023475937745162565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8630e+04 | 9216 |      1 | 3.219e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.409628092243013 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 224.27s (max_walltime = 225.62s)  [SPH][rank=0]
Info: iteration since start : 576                                                     [SPH][rank=0]
Info: time since start : 224.27481416600003 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 13):
   -> t = 1.3 >= 1.3
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.3 -> 1.4000000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 1.4000000000000001 (current = 1.3)
   -> iter = None (current = 575)
   -> walltime = 225.621948167 (current = 227.341027673)

Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = 225.62s)      [SPH][rank=0]
---------------- t = 1.3, dt = 0.0023475937745162565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.0%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 310.76 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
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.2824435763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.439161121649119e-16,-1.0107457306871276e-16,6.14484198518517e-16)
    sum a = (-3.7195805610849546e-15,5.053728653616048e-16,-7.760011881777927e-14)
    sum e = 3.1535669343297616e-09
    sum de = 2.4564282285204714e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.72e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234735605654064 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3812e+04 | 9216 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.83667612013707 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 227.73s > 225.62s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 7):
   -> walltime = 227.72866675100002 >= 225.621948167
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000007.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (50.2%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000007.sham              [Shamrock Dump][rank=0]
              - took 1.39 ms, bandwidth = 2.51 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 227.72866675100002 -> 257.728666751

[Simulation] Evolve until next trigger(s) :
   -> t = 1.4000000000000001 (current = 1.3023475937745164)
   -> iter = None (current = 576)
   -> walltime = 257.728666751 (current = 227.732521902)

Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = 257.73s)      [SPH][rank=0]
---------------- t = 1.3023475937745164, dt = 0.00234735605654064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.86 us    (0.9%)
   patch tree reduce : 1.28 us    (0.4%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 291.07 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.280924479166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.352367093687123e-16,-9.989531788375496e-17,4.3315944836893987e-16)
    sum a = (-3.67618354656215e-15,4.994765895799751e-16,-7.688382902534659e-14)
    sum e = 3.154139633932944e-09
    sum de = 2.422174556601774e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.73e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347123744347605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1376e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.769658271170478 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.35s (niter = 25) global walltime = 228.03s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.304694949831057, dt = 0.002347123744347605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 333.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.279188368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.266591858005917e-16,-9.872990484978165e-17,2.535442813089555e-16)
    sum a = (-3.633295929332143e-15,4.936495244874109e-16,-7.61558207047668e-14)
    sum e = 3.1547041308079163e-09
    sum de = 2.3873024731148293e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.74e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346897912185678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9831e+04 | 9216 |      1 | 3.089e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.350536760462617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3070420735754045, dt = 0.002346897912185678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.1%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 317.62 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.277452256944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.181825424417856e-16,-9.757819823297768e-17,7.566870749874579e-17)
    sum a = (-3.590912712054059e-15,4.878909910494156e-16,-7.541635184151615e-14)
    sum e = 3.1552603166366496e-09
    sum de = 2.3518318615565003e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.75e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023466795058136574 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8993e+04 | 9216 |      1 | 3.179e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.5799682280136 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.3093889714875901, dt = 0.0023466795058136574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 343.84 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.275390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.098055557155665e-16,-9.644003178815656e-17,-1.0044157081134179e-16)
    sum a = (-3.5490277782822014e-15,4.822001587041154e-16,-7.466566357051841e-14)
    sum e = 3.1558080566147047e-09
    sum de = 2.3157841371655298e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.78e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023464693167400625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1311e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70225021668472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3117356509934037, dt = 0.0023464693167400625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.7%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 322.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2743055555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.015270161873317e-16,-9.531524119106915e-17,-2.747614470154122e-16)
    sum a = (-3.5076350807477625e-15,4.765762054515099e-16,-7.390399879524916e-14)
    sum e = 3.1563472212870746e-09
    sum de = 2.2791806521767127e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.82e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023462679614497965 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.754132444558792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3140821203101438, dt = 0.0023462679614497965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 310.27 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2734375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.933457277243812e-16,-9.420366392596996e-17,-4.472664200847637e-16)
    sum a = (-3.466728638669372e-15,4.710183193402171e-16,-7.313160203106089e-14)
    sum e = 3.156877686285764e-09
    sum de = 2.2420427042398448e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.86e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346075866864553 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9373e+04 | 9216 |      1 | 3.138e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.92113028557364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3164283882715937, dt = 0.002346075866864553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 334.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.272352430555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.852605080654431e-16,-9.310513935932368e-17,-6.179325818228144e-16)
    sum a = (-3.4263025402311686e-15,4.655256969383341e-16,-7.234871881304942e-14)
    sum e = 3.157399332261636e-09
    sum de = 2.2043915375170065e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.83e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023458932621530947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1208e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.599833324441235 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3187744641384582, dt = 0.0023458932621530947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 278.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
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.2708333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.772701893691683e-16,-9.201950881767103e-17,-7.867366021023253e-16)
    sum a = (-3.386350946390957e-15,4.600975437988324e-16,-7.155559672177577e-14)
    sum e = 3.1579120448181586e-09
    sum de = 2.1662483589032262e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.77e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345720176712718 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.398786928695312 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3211203574006114, dt = 0.002345720176712718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 304.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.270616319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.693736187163044e-16,-9.094661566000612e-17,-9.536557191980071e-16)
    sum a = (-3.3468680941093526e-15,4.547330787887677e-16,-7.075248539385293e-14)
    sum e = 3.1584157144545707e-09
    sum de = 2.1276343075580984e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.73e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345556444286864 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1210e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.597212853880265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3234660775773242, dt = 0.002345556444286864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 316.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2690972222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.615696585513692e-16,-8.988630532346428e-17,-1.11866773004138e-15)
    sum a = (-3.3078482931543777e-15,4.494315277473495e-16,-6.993963635224367e-14)
    sum e = 3.1589102364999842e-09
    sum de = 2.0885704573366685e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.71e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023454017131244475 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.9514e+04 | 9216 |      1 | 4.723e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.879513837469517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.325811634021611, dt = 0.0023454017131244475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 290.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.267361111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.538571870705782e-16,-8.883842539189893e-17,-1.2817509813066027e-15)
    sum a = (-3.2692859362539317e-15,4.44192127825301e-16,-6.911730226592516e-14)
    sum e = 3.1593955110591764e-09
    sum de = 2.0490778143097893e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345255461739972 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.82766589990656 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3281570357347354, dt = 0.002345255461739972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 316.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2662760416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.462350984817298e-16,-8.780282562689537e-17,-1.4428843600582823e-15)
    sum a = (-3.2311754922452553e-15,4.3901412772731806e-16,-6.82857376772038e-14)
    sum e = 3.1598714429639717e-09
    sum de = 2.009177315841941e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023451170195052627 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9669e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.18045216032775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3305022911964755, dt = 0.0023451170195052627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 284.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.2646484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.387023032054046e-16,-8.67793579907325e-17,-1.6020472899831055e-15)
    sum a = (-3.1935115151824066e-15,4.3389678952128197e-16,-6.744519771225828e-14)
    sum e = 3.160337941732476e-09
    sum de = 1.9688898353244302e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344985591429924 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7861e+04 | 9216 |      1 | 3.308e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.522621227479007 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3328474082159807, dt = 0.002344985591429924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 295.59 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.5%)
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.263129340277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.312577279332026e-16,-8.57678766495649e-17,-1.7592197245350595e-15)
    sum a = (-3.156288639993391e-15,4.28839383790909e-16,-6.659593858760743e-14)
    sum e = 3.1607949215384254e-09
    sum de = 1.928236181182707e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023448602860923996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9760e+04 | 9216 |      1 | 3.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.260723292424967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3351923938074106, dt = 0.0023448602860923996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.16 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.262261284722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.239003156025309e-16,-8.476823798112516e-17,-1.9143821459382697e-15)
    sum a = (-3.1195015775674847e-15,4.238411892565863e-16,-6.573821834113876e-14)
    sum e = 3.1612423011878376e-09
    sum de = 1.887237078705245e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023447401458151496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7929e+04 | 9216 |      1 | 3.300e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.581502097155514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.337537254093503, dt = 0.0023447401458151496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 305.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.261935763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.166290252796532e-16,-8.378030056314846e-17,-2.0675155685289004e-15)
    sum a = (-3.083145126953975e-15,4.189015028417364e-16,-6.487229702739202e-14)
    sum e = 3.1616800040964393e-09
    sum de = 1.8459131850832767e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023446241782735465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.68985947329076 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3398819942393183, dt = 0.0023446241782735465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 337.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
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.2612847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.094428318845083e-16,-8.280392511177832e-17,-2.2186015444068593e-15)
    sum a = (-3.047214159593416e-15,4.1401962513257166e-16,-6.399843684700322e-14)
    sum e = 3.1621079582835237e-09
    sum de = 1.804285081804007e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.66e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023445113879797808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.974e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38446714203586 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.342226618417592, dt = 0.0023445113879797808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 297.67 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.2606336805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.023407258929821e-16,-8.183897447012107e-17,-2.367622171555623e-15)
    sum a = (-3.01170362917947e-15,4.0919487195255943e-16,-6.311690217992747e-14)
    sum e = 3.1625260963670912e-09
    sum de = 1.7623732431179569e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.60e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344332008144585 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3602e+04 | 9216 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.615260936056952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3445711298055718, dt = 0.002344332008144585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 338.47 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 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.2599826388888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.953219200975845e-16,-8.088534167862511e-17,-2.5145557615540607e-15)
    sum a = (-2.9766096009027008e-15,4.044267086202993e-16,-6.222798564398195e-14)
    sum e = 3.162934343422319e-09
    sum de = 1.720199291933171e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.56e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023441407344534744 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.964e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.477737241727958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3469154618137165, dt = 0.0023441407344534744 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 310.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2588975694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.883854643083722e-16,-7.9942897635859e-17,-2.659384959778761e-15)
    sum a = (-2.941927321484701e-15,3.9971448754433967e-16,-6.133196045734221e-14)
    sum e = 3.1633326401478604e-09
    sum de = 1.6777837741748586e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.53e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023439628344052344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1489e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.834196859825582 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.34925960254817, dt = 0.0023439628344052344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 305.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.2582465277777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.815303460772978e-16,-7.901150478745093e-17,-2.8020945910806717e-15)
    sum a = (-2.9076517295415613e-15,3.950575237023038e-16,-6.042909147108102e-14)
    sum e = 3.1637209362197283e-09
    sum de = 1.6351466469319585e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.52e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023437993195084233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0443e+04 | 9216 |      1 | 3.027e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.87396273921998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3516035653825753, dt = 0.0023437993195084233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.2575954861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.747555642890703e-16,-7.809102710720218e-17,-2.9426701088801087e-15)
    sum a = (-2.8737778217273324e-15,3.904551354349986e-16,-5.95196430441038e-14)
    sum e = 3.1640991858733483e-09
    sum de = 1.5923077038943324e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.51e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343650869191238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61922830396373 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3539473647020837, dt = 0.002343650869191238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 323.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 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.2571614583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.680601292203174e-16,-7.718133012691251e-17,-3.0810975897350413e-15)
    sum a = (-2.8403006457291713e-15,3.859066511837935e-16,-5.86038796386197e-14)
    sum e = 3.1644673478949713e-09
    sum de = 1.549286591455393e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.66e-03 |
|       force |  8.52e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343517811202077 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1448e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.79007210225651 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3562910155712748, dt = 0.002343517811202077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 265.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.256076388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.614430634742809e-16,-7.628228104592673e-17,-3.2173637106199015e-15)
    sum a = (-2.8072153169916974e-15,3.81411404982841e-16,-5.768206588160042e-14)
    sum e = 3.164825385520748e-09
    sum de = 1.506102798753022e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.54e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343400112517565 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.978e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.330197423525963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.358634533382477, dt = 0.002343400112517565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 303.12 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.255208333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.54903402813151e-16,-7.539374886126599e-17,-3.351455726817331e-15)
    sum a = (-2.7745170139493794e-15,3.7696874490470153e-16,-5.6754466604188986e-14)
    sum e = 3.1651732663370172e-09
    sum de = 1.4627756465954721e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.57e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023432973809355364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.131e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.940843416562224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3609779334949945, dt = 0.0023432973809355364 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 324.77 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.2545572916666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.484401969643656e-16,-7.45156044535217e-17,-3.483361451642852e-15)
    sum a = (-2.7422009861931057e-15,3.725780218677757e-16,-5.5821346987810376e-14)
    sum e = 3.1655109621854516e-09
    sum de = 1.419324314998385e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.56e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023432088773670465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9210e+04 | 9216 |      1 | 3.155e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.737316761803807 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.34s (niter = 17) global walltime = 235.90s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.3633212308759302, dt = 0.0023432088773670465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.7%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 328.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.254231770833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.420525103015286e-16,-7.36477207104047e-17,-3.613069239077501e-15)
    sum a = (-2.710262551153762e-15,3.682386039340244e-16,-5.488297331580349e-14)
    sum e = 3.1658384490906003e-09
    sum de = 1.3757678366068228e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.52e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023431103106938854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1363e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.707106514437527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.365664439753297, dt = 0.0023431103106938854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.5%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 365.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253689236111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.357394853855901e-16,-7.278998112199982e-17,-3.740566696974385e-15)
    sum a = (-2.6786974268174614e-15,3.6394990494305287e-16,-5.393962222566753e-14)
    sum e = 3.166155703994033e-09
    sum de = 1.332125537913041e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.51e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342949048393218 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1265e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61592512770491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.368007550063991, dt = 0.002342949048393218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 310.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
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.2534722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.295004140826645e-16,-7.194228948584885e-17,-3.865839295707536e-15)
    sum a = (-2.647502070056677e-15,3.597114476548687e-16,-5.299159194795785e-14)
    sum e = 3.1664627015733086e-09
    sum de = 1.2884175613377966e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.51e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023427847207941298 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1200e+04 | 9216 |      1 | 2.954e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55451301696956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3703504991123843, dt = 0.0023427847207941298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 296.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2530381944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.233344312503261e-16,-7.110452824720246e-17,-3.988876594325043e-15)
    sum a = (-2.6166721560244802e-15,3.555226412706616e-16,-5.203915664351115e-14)
    sum e = 3.166759429956085e-09
    sum de = 1.2446627694348438e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.54e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023426324770616834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.896173436973786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3726932838331785, dt = 0.0023426324770616834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 307.70 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.251953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.172406440016201e-16,-7.02765760972605e-17,-4.1096695373255735e-15)
    sum a = (-2.5862032202527304e-15,3.5138288072054257e-16,-5.1082584576233776e-14)
    sum e = 3.167045883334019e-09
    sum de = 1.200879561855321e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.59e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023424924200520537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1435e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.76594742876822 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3750359163102401, dt = 0.0023424924200520537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.52 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.2517361111111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.112181713206367e-16,-6.945831333144609e-17,-4.228209656093709e-15)
    sum a = (-2.5560908566283867e-15,3.4729156676966196e-16,-5.0122143531230133e-14)
    sum e = 3.167322059976665e-09
    sum de = 1.1570861550194177e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.66e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023423644104555146 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5418e+04 | 9216 |      1 | 3.626e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.25871342869179 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3773784087302923, dt = 0.0023423644104555146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (0.8%)
   patch tree reduce : 1.83 us    (0.2%)
   gen split merge   : 1.27 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.2%)
   LB compute        : 740.12 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.250868055555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.052661440600017e-16,-6.8649621861232e-17,-4.344489068348123e-15)
    sum a = (-2.5263307207094203e-15,3.4324810908711325e-16,-4.915810083701519e-14)
    sum e = 3.16758796222469e-09
    sum de = 1.1133005766782524e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.67e-03 |
|       force |  8.67e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342248082498401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.104e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.170510219961898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3797207731407477, dt = 0.002342248082498401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 274.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2508680555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.993837053152878e-16,-6.785038526155377e-17,-4.458500466119588e-15)
    sum a = (-2.496918526912868e-15,3.392519263068116e-16,-4.81907236448548e-14)
    sum e = 3.1678435964219107e-09
    sum de = 1.0695406665538697e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.66e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023421428661458362 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0587e+04 | 9216 |      1 | 3.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.985319303190376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.382063021223246, dt = 0.0023421428661458362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 295.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2499999999999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.935700107272718e-16,-6.706048880837495e-17,-4.570237107031875e-15)
    sum a = (-2.4678500531889206e-15,3.3530244513335836e-16,-4.722027879445207e-14)
    sum e = 3.168088972854964e-09
    sum de = 1.0258240863953799e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.67e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023420480152160764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8310e+04 | 9216 |      1 | 3.255e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.90041302152798 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.384405164089392, dt = 0.0023420480152160764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.5%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 268.28 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.249131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.878242286674732e-16,-6.627981950665298e-17,-4.679692807023601e-15)
    sum a = (-2.4391211436824862e-15,3.3139909797218136e-16,-4.624703328919552e-14)
    sum e = 3.168324105704642e-09
    sum de = 9.821683114227474e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.70e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341962640014812 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.829569610239147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.386747212104608, dt = 0.002341962640014812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 284.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248697916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.82145540317414e-16,-6.55082661136992e-17,-4.786861937343084e-15)
    sum a = (-2.4107277029367647e-15,3.275413316813854e-16,-4.527125350037258e-14)
    sum e = 3.16854901299968e-09
    sum de = 9.385906257807546e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.75e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023418857432695415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8858e+04 | 9216 |      1 | 3.194e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.399786296011293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3890891747446228, dt = 0.0023418857432695415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.0%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 265.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.6%)
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.2484809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.765331396677663e-16,-6.474571911089379e-17,-4.8917394205910984e-15)
    sum a = (-2.3826656982602403e-15,3.2372859568320955e-16,-4.429320550441963e-14)
    sum e = 3.1687637165764816e-09
    sum de = 8.951081239854027e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.82e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023418162586141514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1467e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.785845907250394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3914310604878923, dt = 0.0023418162586141514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 284.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2482638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.709862334008243e-16,-6.399207071821232e-17,-4.994320731059612e-15)
    sum a = (-2.354931167321234e-15,3.19960354204675e-16,-4.3313155452912827e-14)
    sum e = 3.1689682420462485e-09
    sum de = 8.517376954317806e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.82e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234169538744216 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1411e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.733529917464594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3937728767465065, dt = 0.00234169538744216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 274.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2476128472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.655041765364133e-16,-6.324723329711379e-17,-5.094599398827008e-15)
    sum a = (-2.327520882996283e-15,3.1623616646146737e-16,-4.233139380623138e-14)
    sum e = 3.169162613839899e-09
    sum de = 8.084970986911175e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.76e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341573277822008 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.7526580228725 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.3961145721339487, dt = 0.002341573277822008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.18 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.247395833333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.60086209101329e-16,-6.251110359709186e-17,-5.192571966015304e-15)
    sum a = (-2.3004310453783456e-15,3.12555518482033e-16,-4.1348189244700696e-14)
    sum e = 3.1693468655046794e-09
    sum de = 7.654029271596251e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.72e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341459593412292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1387e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.709021057579356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3984561454117708, dt = 0.0015438545882293653 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.246961805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.565663944969202e-16,-6.20328725791498e-17,-5.2552564349328916e-15)
    sum a = (-2.282831973849932e-15,3.101643627260575e-16,-4.0702522586871934e-14)
    sum e = 3.169459919791746e-09
    sum de = 7.371254066407838e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023413894883368034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8451e+04 | 9216 |      1 | 3.239e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15795022233982 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 619                                                     [SPH][rank=0]
Info: time since start : 240.78213954900002 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 14):
   -> t = 1.4000000000000001 >= 1.4000000000000001
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.4000000000000001 -> 1.5000000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 1.5000000000000002 (current = 1.4000000000000001)
   -> iter = None (current = 618)
   -> walltime = 257.728666751 (current = 243.82681426000002)

Info: evolve_until (target_time = 1.50s, niter_max = -1, max_walltime = 257.73s)      [SPH][rank=0]
---------------- t = 1.4000000000000001, dt = 0.0023413894883368034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 300.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.2465277777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.512349809133706e-16,-6.130850279904316e-17,-5.350058485749933e-15)
    sum a = (-2.256174903904012e-15,3.065425147024495e-16,-3.9714198948508496e-14)
    sum e = 3.1696303924151397e-09
    sum de = 6.94259846129838e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.66e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023412907209626604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4308e+04 | 9216 |      1 | 3.791e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.23182527520163 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.04s (niter = 8) global walltime = 244.21s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.402341389488337, dt = 0.0023412907209626604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 283.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2465277777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.459838268377954e-16,-6.059503773218228e-17,-5.441883945951111e-15)
    sum a = (-2.229919132812849e-15,3.029751881314445e-16,-3.872845872362635e-14)
    sum e = 3.169787919199326e-09
    sum de = 6.516334733276616e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.65e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023412013417002542 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.742199444314107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4046826802092995, dt = 0.0023412013417002542 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 272.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.246310763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.407938733687134e-16,-5.988988788946292e-17,-5.531401113255305e-15)
    sum a = (-2.2039693668525313e-15,2.994494389319418e-16,-3.7742217075122376e-14)
    sum e = 3.169935488328308e-09
    sum de = 6.092112765774088e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.64e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023411215218430764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.64021856918716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4070238815509999, dt = 0.0023411215218430764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 305.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2460937500000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.356644900639193e-16,-5.919296760774764e-17,-5.618605734795214e-15)
    sum a = (-2.1783224504956206e-15,2.959648376484287e-16,-3.675575385668917e-14)
    sum e = 3.1700731447114854e-09
    sum de = 5.670088495896668e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.64e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341051324461779 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9968e+04 | 9216 |      1 | 3.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.406043258767596 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.409365003072843, dt = 0.002341051324461779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 315.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2460937500000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3059494668000686e-16,-5.850417767003469e-17,-5.703498125906905e-15)
    sum a = (-2.152974733099526e-15,2.9252088835251385e-16,-3.5769327876061075e-14)
    sum e = 3.170200942824737e-09
    sum de = 5.2504123838366086e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.64e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340990705717691 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.991e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.17523290807092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4117060543973048, dt = 0.002340990705717691 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 302.82 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.2460937500000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2558452299387493e-16,-5.782342022021905e-17,-5.786079153091098e-15)
    sum a = (-2.1279226144419807e-15,2.891171011501809e-16,-3.478319698292912e-14)
    sum e = 3.170318940473451e-09
    sum de = 4.8332325254965125e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.67e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340939518430282 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1262e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58786922699995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4140470451030225, dt = 0.002340939518430282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.0%)
   patch tree reduce : 1.92 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.67 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
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.245876736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2063250824211704e-16,-5.71505986896775e-17,-5.866350251857066e-15)
    sum a = (-2.103162541220311e-15,2.8575299307791364e-16,-3.3797617839188324e-14)
    sum e = 3.170427198771056e-09
    sum de = 4.418694496521928e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.70e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408975180204943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1319e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.639071108627917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4163879846214527, dt = 0.0023408975180204943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 264.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2456597222222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1573820118639016e-16,-5.648561780427989e-17,-5.944313420990792e-15)
    sum a = (-2.078691006060521e-15,2.8242808903631986e-16,-3.2812846015208254e-14)
    sum e = 3.170525782077919e-09
    sum de = 4.006941460142166e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.75e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340864370435456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.74802667153492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4187288821394732, dt = 0.002340864370435456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 331.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2456597222222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1090091015106727e-16,-5.582838358313694e-17,-6.019971218161755e-15)
    sum a = (-2.0545045503130264e-15,2.791419175802409e-16,-3.182913596312938e-14)
    sum e = 3.170614757948333e-09
    sum de = 3.598114037618774e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.81e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408396618363127 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1155e+04 | 9216 |      1 | 2.958e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48811698226495 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.75s (niter = 9) global walltime = 246.58s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4210697465099087, dt = 0.0023408396618363127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 290.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2454427083333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0611995302052246e-16,-5.51788033520474e-17,-6.093326756120158e-15)
    sum a = (-2.030599764857214e-15,2.758940169689362e-16,-3.084674073083214e-14)
    sum e = 3.170694197073315e-09
    sum de = 3.1923503579261107e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.88e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408229097238915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.516316742630195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.423410586171745, dt = 0.0023408229097238915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 278.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2454427083333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0139465720534255e-16,-5.4536785723900065e-17,-6.1643836986496606e-15)
    sum a = (-2.0069732854703273e-15,2.7268392802013954e-16,-2.9865911865535693e-14)
    sum e = 3.170764173228817e-09
    sum de = 2.7897860417396853e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  8.97e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340813575240609 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1278e+04 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.600398221696935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.425751409081469, dt = 0.002340813575240609 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 342.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.967243595958289e-16,-5.390224060815203e-17,-6.233146257244176e-15)
    sum a = (-1.9836217983748114e-15,2.6951120288320747e-16,-2.888689950687977e-14)
    sum e = 3.170824763224653e-09
    sum de = 2.3905541122780515e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.08e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340811076274951 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8293e+04 | 9216 |      1 | 3.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.870732870618742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4280922226567094, dt = 0.002340811076274951 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 313.15 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9210840645801347e-16,-5.327507917835468e-17,-6.299619188857513e-15)
    sum a = (-1.960542032308326e-15,2.663753962974996e-16,-2.7909952047218368e-14)
    sum e = 3.1708760468510927e-09
    sum de = 1.9947850433787697e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.19e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408148009388934 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8750e+04 | 9216 |      1 | 3.206e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.288370192679782 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4304330337329845, dt = 0.0023408148009388934 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 315.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8754615333678244e-16,-5.265521387349391e-17,-6.363807792986666e-15)
    sum a = (-1.937730767025586e-15,2.632760692525381e-16,-2.6935316192037516e-14)
    sum e = 3.1709181068298565e-09
    sum de = 1.60260673888732e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.30e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340824121058233 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1530e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83069554174297 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4327738485339234, dt = 0.002340824121058233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 314.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.83036964890935e-16,-5.2042558375278244e-17,-6.42571790982008e-15)
    sum a = (-1.9151848229736037e-15,2.602127924566074e-16,-2.5963236826396546e-14)
    sum e = 3.170951028764356e-09
    sum de = 1.2141444654405354e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.34e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408356337903673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.760323069388697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4351146726549817, dt = 0.0023408356337903673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 307.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.785802200567687e-16,-5.1437028294509195e-17,-6.485355846338656e-15)
    sum a = (-1.8929011006263933e-15,2.5718514226299634e-16,-2.4993958299039748e-14)
    sum e = 3.170974901054013e-09
    sum de = 8.295212805137634e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.38e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340777686951968 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1304e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62366109541574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.437455508288772, dt = 0.002340777686951968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 320.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.741754406624903e-16,-5.08385586678315e-17,-6.542726685375486e-15)
    sum a = (-1.8708772029277108e-15,2.541927940700196e-16,-2.402775271722613e-14)
    sum e = 3.1709898143352302e-09
    sum de = 4.488691346188081e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.68e-03 |
|       force |  9.43e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023407337478269256 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.80050424681027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.439796285975724, dt = 0.0023407337478269256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 322.82 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.698219917796551e-16,-5.024706322721117e-17,-6.597838420811534e-15)
    sum a = (-1.849109959020224e-15,2.5123531600432127e-16,-2.306485459040393e-14)
    sum e = 3.170995863754829e-09
    sum de = 7.230296041313242e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.48e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023407042460211946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.80512201052722 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.82s (niter = 6) global walltime = 249.29s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.442137019723551, dt = 0.0023407042460211946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 273.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6551924790841085e-16,-4.966245699075029e-17,-6.650699479814439e-15)
    sum a = (-1.8275962386223154e-15,2.4831228544367255e-16,-2.2105496407486394e-14)
    sum e = 3.170993146616679e-09
    sum de = -3.000650162392385e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.54e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023406892931809673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0426e+04 | 9216 |      1 | 3.029e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.819447834015552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4444777239695723, dt = 0.0023406892931809673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 279.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6126659158890793e-16,-4.908465605780044e-17,-6.70131879168986e-15)
    sum a = (-1.806332958408121e-15,2.454232809664522e-16,-2.114990823891563e-14)
    sum e = 3.1709817626523113e-09
    sum de = -6.681253825556202e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.61e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340688684326838 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1374e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.686086403347872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4468184132627533, dt = 0.002340688684326838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 268.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.570634138390781e-16,-4.8513577691968126e-17,-6.749705775082579e-15)
    sum a = (-1.7853170699086737e-15,2.4256788843041347e-16,-2.0198317849969477e-14)
    sum e = 3.1709618139586196e-09
    sum de = -1.0317715644956209e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.64e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023407019084543145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5645e+04 | 9216 |      1 | 3.594e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.44777644361772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4491591019470802, dt = 0.0023407019084543145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 267.38 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (62.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5290911459260123e-16,-4.794914036536889e-17,-6.7958703277931605e-15)
    sum a = (-1.7645455729298312e-15,2.397457013389524e-16,-1.92509508122903e-14)
    sum e = 3.170933404941768e-09
    sum de = -1.3908996963494757e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.67e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340728167916687 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1359e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67243724839615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4514998038555345, dt = 0.002340728167916687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.32 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 370.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.488031030079129e-16,-4.739126379844267e-17,-6.83982281870199e-15)
    sum a = (-1.744015515323022e-15,2.369563184388452e-16,-1.8308030731436105e-14)
    sum e = 3.170896642271335e-09
    sum de = -1.745408688141947e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.71e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340766405527755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.021e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.892676948631486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.453840532023451, dt = 0.002340766405527755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.02 us    (2.6%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 277.78 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245225694444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.447447977209946e-16,-4.683986900225043e-17,-6.8815740821931575e-15)
    sum a = (-1.7237239887703368e-15,2.341993447008782e-16,-1.7369779150655007e-14)
    sum e = 3.170851634835081e-09
    sum de = -2.0952000924903575e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340815339134 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.261090142740954 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.52s (niter = 5) global walltime = 251.14s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4561812984289788, dt = 0.002340815339134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 291.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2456597222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.407336270293488e-16,-4.6294878299393566e-17,-6.921135413775574e-15)
    sum a = (-1.7036681351749168e-15,2.3147439135280503e-16,-1.6436415575707248e-14)
    sum e = 3.1707984937022478e-09
    sum de = -2.4401781583971297e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.69e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023408735020904996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9769e+04 | 9216 |      1 | 3.096e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.219834704603155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4585221137681128, dt = 0.0023408735020904996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (2.7%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 263.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
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.2456597222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.367690289603006e-16,-4.575621533680305e-17,-6.9585185675795385e-15)
    sum a = (-1.6838451443676765e-15,2.2878107653634793e-16,-1.5508157398456706e-14)
    sum e = 3.1707373320861723e-09
    sum de = -2.780249787376915e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.71e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023409392884744837 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3383e+04 | 9216 |      1 | 3.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.381446246110038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4608629872702033, dt = 0.0023409392884744837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 342.79 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.245876736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3285045126292134e-16,-4.522380508074723e-17,-6.9937357550400464e-15)
    sum a = (-1.6642522565484483e-15,2.261190259385572e-16,-1.458521999638874e-14)
    sum e = 3.1706682653100697e-09
    sum de = -3.115324629669937e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.77e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340944002921611 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9037e+04 | 9216 |      1 | 3.174e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.55212898046633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4632039265586778, dt = 0.002340944002921611 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 326.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.245876736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.289774628041778e-16,-4.4697588952357256e-17,-7.026798668111325e-15)
    sum a = (-1.644887314586768e-15,2.2348794491435996e-16,-1.3667843298150385e-14)
    sum e = 3.170591412852018e-09
    sum de = -3.4453055064353495e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.69e-03 |
|       force |  9.85e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023409318432759483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1210e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.539622720833645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4655448705615994, dt = 0.0023409318432759483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 313.74 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 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.245876736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2514955983323727e-16,-4.417749851199818e-17,-7.057720393977125e-15)
    sum a = (-1.6257477989548948e-15,2.2088749237516879e-16,-1.2756246126981581e-14)
    sum e = 3.1705068957583976e-09
    sum de = -3.7701051398105035e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  9.86e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340928229866518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3903e+04 | 9216 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.857766776604972 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 252.84s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4678858024048753, dt = 0.002340928229866518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 298.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
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.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2136620306669364e-16,-4.3663460486893483e-17,-7.086514857218606e-15)
    sum a = (-1.6068310151289986e-15,2.1831730203755927e-16,-1.1850634375247566e-14)
    sum e = 3.1704148361319166e-09
    sum de = -4.0896428177541635e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  9.88e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340933971874938 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.663957079096846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4702267306347419, dt = 0.002340933971874938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 296.10 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.176268591730883e-16,-4.3155402413278484e-17,-7.113196423757357e-15)
    sum a = (-1.5881342949999985e-15,2.1577701154955514e-16,-1.0951210643482392e-14)
    sum e = 3.1703153577274427e-09
    sum de = -4.403840909786351e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  9.92e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002340949710499926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6467e+04 | 9216 |      1 | 3.482e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.202476244123314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4725676646066168, dt = 0.002340949710499926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.246310763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.139310005486171e-16,-4.265325260684e-17,-7.13777991136087e-15)
    sum a = (-1.5696550029328394e-15,2.1326626218854176e-16,-1.0058174101059005e-14)
    sum e = 3.170208585963158e-09
    sum de = -4.7126248131042355e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  9.98e-02 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023409758996660378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1076e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.416699535602877 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 253.78s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4749086143171168, dt = 0.0023409758996660378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 305.74 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2465277777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.102781055625693e-16,-4.215694019588462e-17,-7.160280577705337e-15)
    sum a = (-1.5513905274999306e-15,2.1078470079434905e-16,-9.171720637487364e-15)
    sum e = 3.1700946478544775e-09
    sum de = -5.015922994338144e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.01e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341012792142083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1134e+04 | 9216 |      1 | 2.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4704794928218 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.4772495902167828, dt = 0.002341012792142083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.3%)
   LB compute        : 393.46 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.2465277777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.066676588405147e-16,-4.166639515250555e-17,-7.180714109947077e-15)
    sum a = (-1.533338293057768e-15,2.0833197620902988e-16,-8.292042848907112e-15)
    sum e = 3.169973671949799e-09
    sum de = -5.3136669384250856e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.02e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341060431330766 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37545594960289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.479590603008925, dt = 0.002341060431330766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.5%)
   LB compute        : 295.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.246961805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.030991514907382e-16,-4.118154833638441e-17,-7.199096614880351e-15)
    sum a = (-1.515495757112532e-15,2.0590774159534604e-16,-7.419330146398461e-15)
    sum e = 3.169845788272352e-09
    sum de = -5.605791130186676e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.02e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341118649133696 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.012e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.984416528988717 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.62s (niter = 2) global walltime = 254.68s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4819316634402557, dt = 0.002341118649133696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.54 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.246961805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.995720813387722e-16,-4.070233152236441e-17,-7.21544461045812e-15)
    sum a = (-1.4978604057397886e-15,2.035116578665854e-16,-6.553768709044624e-15)
    sum e = 3.169711128265611e-09
    sum de = -5.892233031986599e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.02e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023411870697167877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1208e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.54002021398094 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4842727820893895, dt = 0.0023411870697167877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 270.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.246961805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.960859531494561e-16,-4.02286774185804e-17,-7.229775018007691e-15)
    sum a = (-1.4804297659116652e-15,2.011433869398563e-16,-5.695541646722621e-15)
    sum e = 3.1695698247419442e-09
    sum de = -6.172933056946598e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.03e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023412651194420994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0798e+04 | 9216 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.16591206097687 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 255.27s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4866139691591063, dt = 0.0023412651194420994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 316.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.246961805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9264027877106836e-16,-3.976051970516189e-17,-7.242105155951582e-15)
    sum a = (-1.4632013938449768e-15,1.9880259857651035e-16,-4.8448289643654715e-15)
    sum e = 3.1694220118345866e-09
    sum de = -6.447834518586115e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.04e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341352042340869 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.621729864080237 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 255.57s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4889552342785484, dt = 0.002341352042340869 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 276.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.247178819444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.892345772923895e-16,-3.9297793038012575e-17,-7.252452734178045e-15)
    sum a = (-1.4461728866232468e-15,1.9648896546523403e-16,-4.001807417273525e-15)
    sum e = 3.169267824952426e-09
    sum de = -6.716883642861651e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.04e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023414469209325915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.042632513520168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 255.87s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4912965863208891, dt = 0.0023414469209325915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 267.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.247178819444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.858683751050796e-16,-3.8840433069806886e-17,-7.260835848722395e-15)
    sum a = (-1.4293418763586083e-15,1.94202164820768e-16,-3.1666505444275313e-15)
    sum e = 3.169107400734621e-09
    sum de = -6.980029524977775e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.05e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341514436727374 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9924e+04 | 9216 |      1 | 3.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.36957361033169 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 256.18s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4936380332418218, dt = 0.002341514436727374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.2473958333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8254125492510976e-16,-3.8388383108277574e-17,-7.267272868940948e-15)
    sum a = (-1.412706274703936e-15,1.9194191555273444e-16,-2.339540945586079e-15)
    sum e = 3.1689408793970406e-09
    sum de = -7.237220322804262e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.07e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023415699094793976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.744921812833677 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 256.47s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4959795476785491, dt = 0.0023415699094793976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 270.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.247612847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.792527806720042e-16,-3.7941583897710986e-17,-7.271782723090482e-15)
    sum a = (-1.3962639029367907e-15,1.897079197342153e-16,-1.5206515153552638e-15)
    sum e = 3.1687684015481176e-09
    sum de = -7.488409253815575e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.08e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341601901922978 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1319e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.646594554236206 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 256.77s (max_walltime = 257.73s)  [SPH][rank=0]
---------------- t = 1.4983211175880284, dt = 0.0016788824119717827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 338.56 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.247829861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7692786824445847e-16,-3.7625702136432483e-17,-7.273376974750556e-15)
    sum a = (-1.3846393415694789e-15,1.881285105270987e-16,-9.410136496868585e-16)
    sum e = 3.168639716898787e-09
    sum de = -7.663284301161861e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.07e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023416273819966416 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.572031305723154 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 257.06s (max_walltime = 257.73s)  [SPH][rank=0]
Info: iteration since start : 662                                                     [SPH][rank=0]
Info: time since start : 257.060778104 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 15):
   -> t = 1.5000000000000002 >= 1.5000000000000002
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.5000000000000002 -> 1.6000000000000003

[Simulation] Evolve until next trigger(s) :
   -> t = 1.6000000000000003 (current = 1.5000000000000002)
   -> iter = None (current = 661)
   -> walltime = 257.728666751 (current = 259.879550651)

Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = 257.73s)      [SPH][rank=0]
---------------- t = 1.5000000000000002, dt = 0.0023416273819966416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.3%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 294.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
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.248046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.736953169838996e-16,-3.7186501086029796e-17,-7.275093906170042e-15)
    sum a = (-1.3684765841625558e-15,1.8593250609964579e-16,-1.3427972305318125e-16)
    sum e = 3.1684588222393584e-09
    sum de = -7.905595467279702e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.06e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341666818582038 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8028e+04 | 9216 |      1 | 3.288e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.63715909864267 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 260.21s > 257.73s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 8):
   -> walltime = 260.208995673 >= 257.728666751
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000008.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (54.4%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000008.sham              [Shamrock Dump][rank=0]
              - took 1.44 ms, bandwidth = 2.41 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 260.208995673 -> 290.208995673

[Simulation] Evolve until next trigger(s) :
   -> t = 1.6000000000000003 (current = 1.502341627381997)
   -> iter = None (current = 662)
   -> walltime = 290.208995673 (current = 260.212872186)

Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = 290.21s)      [SPH][rank=0]
---------------- t = 1.502341627381997, dt = 0.002341666818582038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (0.8%)
   patch tree reduce : 1.42 us    (0.5%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 278.58 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.705097243523384e-16,-3.6753680218147906e-17,-7.274463809409449e-15)
    sum a = (-1.3525486211424429e-15,1.8376840018573288e-16,6.614226145810878e-16)
    sum e = 3.168270860214319e-09
    sum de = -8.14025791512829e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.05e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341711349184439 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.84898493978822 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.31s (niter = 25) global walltime = 260.51s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.504683294200579, dt = 0.002341711349184439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.6%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 320.86 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.673610948871337e-16,-3.6325881477264114e-17,-7.271983313689851e-15)
    sum a = (-1.3368054747870649e-15,1.816294073163133e-16,1.448321951139352e-15)
    sum e = 3.1680774893011803e-09
    sum de = -8.368784538252183e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.05e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341761473740289 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9058e+04 | 9216 |      1 | 3.172e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.58021831724675 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5070250055497634, dt = 0.002341761473740289 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 310.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (7.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6424904828062636e-16,-3.590305318054621e-17,-7.267670343590374e-15)
    sum a = (-1.3212452409880187e-15,1.7951526605064816e-16,2.2262558406762715e-15)
    sum e = 3.167878834588031e-09
    sum de = -8.591135575157004e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.05e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341817623887345 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1377e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.702203150017365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5093667670235036, dt = 0.002341817623887345 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 304.63 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.248046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.611731520678151e-16,-3.548513657402023e-17,-7.261545990622094e-15)
    sum a = (-1.3058657599693167e-15,1.7742568268640356e-16,2.995080210702026e-15)
    sum e = 3.167675040414476e-09
    sum de = -8.807283451070269e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.06e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023418801470044682 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1320e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65105770658432 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.511708584647391, dt = 0.0023418801470044682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 305.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2482638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5813297893991197e-16,-3.507207360191438e-17,-7.253631648512155e-15)
    sum a = (-1.2906648944377203e-15,1.753603678189687e-16,3.754655025071295e-15)
    sum e = 3.167466251561864e-09
    sum de = -9.017203469983933e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.07e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002341949292624254 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9357e+04 | 9216 |      1 | 3.139e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.855688320971197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5140504647943955, dt = 0.002341949292624254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 296.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
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.2484809027777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.551281065059497e-16,-3.466380687243667e-17,-7.243949020240525e-15)
    sum a = (-1.275640533637474e-15,1.7331903458152933e-16,4.50484431735605e-15)
    sum e = 3.1672526133043918e-09
    sum de = -9.22087385525952e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.08e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234202520158966 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1387e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.713444825754685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5163924140870197, dt = 0.00234202520158966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.6%)
   LB compute        : 269.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2484809027777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.521581173734212e-16,-3.426027967489704e-17,-7.232520108674988e-15)
    sum a = (-1.2607905870468172e-15,1.7130139815685683e-16,5.245516202694309e-15)
    sum e = 3.1670342713505388e-09
    sum de = -9.418275693385943e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.10e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342107898426302 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1554e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.867646022506037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5187344392886095, dt = 0.002342107898426302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 293.91 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248697916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.492225992558931e-16,-3.386143599498111e-17,-7.219367207637674e-15)
    sum a = (-1.2461129969506314e-15,1.693071797167994e-16,5.97654288726035e-15)
    sum e = 3.1668113717891125e-09
    sum de = -9.609392938475794e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.13e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023421972870771354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1401e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.728710577761742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5210765471870358, dt = 0.0023421972870771354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 339.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248914930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.463211450247847e-16,-3.346722051544771e-17,-7.204512893416516e-15)
    sum a = (-1.231605725460056e-15,1.673361022084482e-16,6.69780067047312e-15)
    sum e = 3.1665840610360515e-09
    sum de = -9.79421239454839e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.16e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342293150259202 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.973e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.36059074043455 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.523418744474113, dt = 0.002342293150259202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.33 us    (0.7%)
   LB compute        : 317.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 5.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248914930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4345335281636944e-16,-3.307757863555742e-17,-7.187980016771337e-15)
    sum a = (-1.2172667638515431e-15,1.6538789388041589e-16,7.409169868645218e-15)
    sum e = 3.166352485783131e-09
    sum de = -9.972723667432581e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.18e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342395152527038 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1076e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.432949016609964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5257610376243722, dt = 0.002342395152527038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 264.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248914930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.406188260751087e-16,-3.269245647209584e-17,-7.16979169558373e-15)
    sum a = (-1.2030941302663806e-15,1.634622826934869e-16,8.110534843901709e-15)
    sum e = 3.1661167929489177e-09
    sum de = -1.0144919157541349e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.17e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342492877597085 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7887e+04 | 9216 |      1 | 3.305e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.516609265032073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5281034327768992, dt = 0.002342492877597085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 296.75 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.248914930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.378171855979847e-16,-3.23118025103972e-17,-7.149971388522773e-15)
    sum a = (-1.189085928561801e-15,1.6155901304968862e-16,8.801781017054385e-15)
    sum e = 3.1658771306406978e-09
    sum de = -1.0310793291016357e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.18e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023425932978261487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.655074651944634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5304459256544962, dt = 0.0023425932978261487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248914930555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.350480479276572e-16,-3.193556464700686e-17,-7.128542775683272e-15)
    sum a = (-1.1752402397070862e-15,1.596778235492561e-16,9.482800228112275e-15)
    sum e = 3.1656336464035803e-09
    sum de = -1.047034386481471e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.18e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342703154682332 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1462e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.7902584506554 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5327885189523223, dt = 0.002342703154682332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 305.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.249131944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.323110263193842e-16,-3.1563690336984464e-17,-7.105529714152221e-15)
    sum a = (-1.1615551323410828e-15,1.5781845149778733e-16,1.0153490477277717e-14)
    sum e = 3.1653864870882087e-09
    sum de = -1.0623571894946361e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.19e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342821924757431 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1394e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.729342843538326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5351312221070046, dt = 0.002342821924757431 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 267.59 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2493489583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2960573956075453e-16,-3.1196127787080955e-17,-7.0809562799667594e-15)
    sum a = (-1.148028698327236e-15,1.5598063924080523e-16,1.0813753762049394e-14)
    sum e = 3.1651357995097842e-09
    sum de = -1.0770481037075061e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.20e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002342948875140728 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9379e+04 | 9216 |      1 | 3.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.886925912551817 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.537474044031762, dt = 0.002342948875140728 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 319.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.249782986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2693181202640217e-16,-3.083282595714044e-17,-7.054846768108121e-15)
    sum a = (-1.1346590598737503e-15,1.5416413026764588e-16,1.1463496037087986e-14)
    sum e = 3.16488173042848e-09
    sum de = -1.0911077551298887e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.21e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343083085647605 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9347e+04 | 9216 |      1 | 3.140e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.85924189274465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5398169929069028, dt = 0.002343083085647605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 341.18 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.249782986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.242888737648789e-16,-3.047373458502699e-17,-7.027225687976231e-15)
    sum a = (-1.1214443691511694e-15,1.5236867256887625e-16,1.2102627258089023e-14)
    sum e = 3.1646244265169503e-09
    sum de = -1.1045370270286175e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.22e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343223476140594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0847e+04 | 9216 |      1 | 2.988e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.23338029156407 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5421600759925504, dt = 0.002343223476140594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 311.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.25
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2167656055122374e-16,-3.011880418769859e-17,-6.99811775888615e-15)
    sum a = (-1.1083828029517871e-15,1.5059402158620326e-16,1.2731061315016458e-14)
    sum e = 3.164364034326207e-09
    sum de = -1.1173370578682205e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.24e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343360979311733 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1292e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.642640485864902 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5445032994686911, dt = 0.002343360979311733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 321.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.250108506944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.190945226247622e-16,-2.976798723564887e-17,-6.967548005851894e-15)
    sum a = (-1.0954726133793683e-15,1.4883993644664518e-16,1.3348714009816133e-14)
    sum e = 3.1641007011265266e-09
    sum de = -1.1295091969366702e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.25e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002343489242066711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7687e+04 | 9216 |      1 | 3.329e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.344189167139408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.546846660448003, dt = 0.002343489242066711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.8%)
   patch tree reduce : 20.91 us   (6.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 275.09 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.250325520833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1654242095778223e-16,-2.942123767320151e-17,-6.935541746562774e-15)
    sum a = (-1.0827121046179663e-15,1.4710618817717586e-16,1.395550394796476e-14)
    sum e = 3.163834574608086e-09
    sum de = -1.1410550300116534e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.26e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023436161165926576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.770617447785366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5491901496900695, dt = 0.0023436161165926576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 292.06 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2505425347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1401991147727787e-16,-2.9078508749953956e-17,-6.902124399752233e-15)
    sum a = (-1.0700995573320516e-15,1.453925437008624e-16,1.455135640645359e-14)
    sum e = 3.163565801227093e-09
    sum de = -1.1519764505678358e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.28e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023437303212159068 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.77573960786035 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5515337658066621, dt = 0.0023437303212159068 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 314.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.2505425347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.115266661823585e-16,-2.873975589917733e-17,-6.867321719814831e-15)
    sum a = (-1.0576333310864831e-15,1.436987798787238e-16,1.5136198197529343e-14)
    sum e = 3.1632945282827522e-09
    sum de = -1.1622755579477219e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.26e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023438068642128774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.022e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.91834630405147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.553877496127878, dt = 0.0023438068642128774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.6%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 328.95 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
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.2507595486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0906238665762026e-16,-2.8404938575428146e-17,-6.831160038862509e-15)
    sum a = (-1.0453119329125296e-15,1.4202469208926183e-16,1.5709954634190373e-14)
    sum e = 3.1630209055312207e-09
    sum de = -1.1719546128257958e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.26e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023438851454411543 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.784048592279966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.556221302992091, dt = 0.0023438851454411543 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 268.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2511935763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.066267350342922e-16,-2.8074010878532855e-17,-6.79366532242127e-15)
    sum a = (-1.0331336754203822e-15,1.4037005358651002e-16,1.627256571020502e-14)
    sum e = 3.1627450777044498e-09
    sum de = -1.1810163281208823e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.26e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023439662031270545 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1509e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.848950716508515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5585651881375322, dt = 0.0023439662031270545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 301.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2514105902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0421937683431766e-16,-2.7746927358290466e-17,-6.754863630486464e-15)
    sum a = (-1.0210968842047824e-15,1.387346366629296e-16,1.6823975897709708e-14)
    sum e = 3.1624671887104633e-09
    sum de = -1.1894636535861834e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.27e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023440504585283315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.975e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.368298409357102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5609091543406592, dt = 0.0023440504585283315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.251627604166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.01839981130603e-16,-2.7423643050652434e-17,-6.714781138646972e-15)
    sum a = (-1.0091999054584056e-15,1.3711821529679886e-16,1.7364134007061023e-14)
    sum e = 3.162187381695054e-09
    sum de = -1.1972997780834454e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.29e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344138260418872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0942e+04 | 9216 |      1 | 2.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.331544639911105 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.42s (niter = 18) global walltime = 268.04s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.5632532047991876, dt = 0.002344138260418872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 351.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.251627604166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.994882205790645e-16,-2.7104113482609234e-17,-6.6734441288375195e-15)
    sum a = (-9.974411027503615e-16,1.3552056662081216e-16,1.7892993233398068e-14)
    sum e = 3.16190579899412e-09
    sum de = -1.2045281241750528e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.31e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344229874559165 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1381e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.734567164454347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5655973430596064, dt = 0.002344229874559165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (0.9%)
   patch tree reduce : 1.74 us    (0.3%)
   gen split merge   : 1.50 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.2%)
   LB compute        : 667.52 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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.251627604166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9716377147758383e-16,-2.678829467643871e-17,-6.630878979976629e-15)
    sum a = (-9.85818856473716e-16,1.339414734259998e-16,1.841051104360156e-14)
    sum e = 3.1616225820896497e-09
    sum de = -1.2111523463597902e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234432547576877 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.058671992829748 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5679415729341655, dt = 0.00234432547576877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 316.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
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.251627604166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9486631382624168e-16,-2.6476143146628466e-17,-6.5871121595584945e-15)
    sum a = (-9.743315698061876e-16,1.3238071542888182e-16,1.8916649163160303e-14)
    sum e = 3.1613378715671098e-09
    sum de = -1.2171763222351035e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344425142716132 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1294e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65770427578473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5702858984099342, dt = 0.002344425142716132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 264.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2518446180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9259553136603582e-16,-2.6167615931403562e-17,-6.542170215396683e-15)
    sum a = (-9.629776567858998e-16,1.3083807929737557e-16,1.9411373550243042e-14)
    sum e = 3.1610518070768694e-09
    sum de = -1.2226041511718597e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.36e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023445288555247407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7577e+04 | 9216 |      1 | 3.342e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.254785370224273 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5726303235526502, dt = 0.0023445288555247407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 278.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2518446180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9035111166206657e-16,-2.5862670576492277e-17,-6.4960797678371174e-15)
    sum a = (-9.517555569202875e-16,1.2931335247277953e-16,1.989465436585824e-14)
    sum e = 3.160764527295508e-09
    sum de = -1.227440149033615e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.38e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344636496274254 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1325e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6883744320257 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.574974852408175, dt = 0.002344636496274254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 261.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2518446180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8813274611640607e-16,-2.556126515394062e-17,-6.448867502223036e-15)
    sum a = (-9.40663730439432e-16,1.2780632606064303e-16,2.0366465874564456e-14)
    sum e = 3.16047616988909e-09
    sum de = -1.2316888412297927e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.41e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023447478522866 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3995e+04 | 9216 |      1 | 3.841e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.976119186340938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5773194889044493, dt = 0.0023447478522866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 298.35 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8594013000532782e-16,-2.526335825992267e-17,-6.400560161861058e-15)
    sum a = (-9.2970065079346e-16,1.2631679161419934e-16,2.0826786403654574e-14)
    sum e = 3.1601868714780364e-09
    sum de = -1.2353549627893492e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.70e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002344862622093138 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9953e+04 | 9216 |      1 | 3.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.43416131062343 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.579664236756736, dt = 0.002344862622093138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.2%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 300.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.252170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8377296252825176e-16,-2.4968909028085362e-17,-6.35118454110218e-15)
    sum a = (-9.188648124226378e-16,1.2484454564433746e-16,2.127559833802073e-14)
    sum e = 3.159896767600389e-09
    sum de = -1.2384434522976981e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.46e-01 |
| dust1_fluid |  2.34e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023449804238739776 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1388e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.7500414682351 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5820090993788292, dt = 0.0023449804238739776 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 270.59 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252387152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8163094680700616e-16,-2.4677877119783075e-17,-6.3007674783327745e-15)
    sum a = (-9.081547353278188e-16,1.2338938527983784e-16,2.1712888144167878e-14)
    sum e = 3.1596059926760953e-09
    sum de = -1.2409594494757608e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345068911184292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1593e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.9390389631258 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.5843540798027032, dt = 0.002345068911184292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 279.47 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.6%)
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.252387152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7951381883114103e-16,-2.4390226669703362e-17,-6.249336541351027e-15)
    sum a = (-8.97569094007149e-16,1.2195113298139234e-16,2.213864048748241e-14)
    sum e = 3.159314683927948e-09
    sum de = -1.2429082580206467e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345156340817253 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.893997027070483 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5866991487138875, dt = 0.002345156340817253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7742129100837054e-16,-2.410591859732562e-17,-6.196918758941827e-15)
    sum a = (-8.871064550697944e-16,1.205295939202994e-16,2.25528498104499e-14)
    sum e = 3.159022973844477e-09
    sum de = -1.2442954339654719e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.48e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345244369945575 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1565e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.916362992115324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5890443050547047, dt = 0.002345244369945575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 305.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.75353077851062e-16,-2.3824914111472628e-17,-6.1435411220892e-15)
    sum a = (-8.767653891155375e-16,1.1912457011242458e-16,2.2955514934141834e-14)
    sum e = 3.158730993386066e-09
    sum de = -1.2451267192215174e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.49e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345333221818854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0932e+04 | 9216 |      1 | 2.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.336738635112084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.5913895494246504, dt = 0.002345333221818854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 259.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.733088970195407e-16,-2.354717486170906e-17,-6.089230616233629e-15)
    sum a = (-8.665444847201413e-16,1.1773587416343734e-16,2.334663879935445e-14)
    sum e = 3.158438872130968e-09
    sum de = -1.2454080399129815e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023454231138127467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.02418792633145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5937348826464692, dt = 0.0023454231138127467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.75 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 284.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7128846926911467e-16,-2.3272662898423822e-17,-6.034014212064514e-15)
    sum a = (-8.564423460311766e-16,1.163633152413534e-16,2.372622839338071e-14)
    sum e = 3.158146738233143e-09
    sum de = -1.2451455030714188e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.43e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023455142514587756 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1682e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.026062880815456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.596080305760282, dt = 0.0023455142514587756 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 295.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6929151843585876e-16,-2.3001340699976203e-17,-5.977918856132061e-15)
    sum a = (-8.464575916953695e-16,1.1500670322629435e-16,2.4094294766238824e-14)
    sum e = 3.1578547183817693e-09
    sum de = -1.244345390914782e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345606822529307 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.95250900933526 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.5984258200117407, dt = 0.0015741799882595942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 289.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6797075152600878e-16,-2.2821890425603304e-17,-5.939558447016704e-15)
    sum a = (-8.398537571137392e-16,1.1410945291968827e-16,2.4333680556872636e-14)
    sum e = 3.157658927242179e-09
    sum de = -1.2433639730238527e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023456698447625103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.021e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.758359684714787 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 705                                                     [SPH][rank=0]
Info: time since start : 272.91109529600004 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 16):
   -> t = 1.6000000000000003 >= 1.6000000000000003
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.6000000000000003 -> 1.7000000000000004

[Simulation] Evolve until next trigger(s) :
   -> t = 1.7000000000000004 (current = 1.6000000000000003)
   -> iter = None (current = 704)
   -> walltime = 290.208995673 (current = 275.984010367)

Info: evolve_until (target_time = 1.70s, niter_max = -1, max_walltime = 290.21s)      [SPH][rank=0]
---------------- t = 1.6000000000000003, dt = 0.0023456698447625103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.3%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 285.29 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.660059297058327e-16,-2.255493353953614e-17,-5.882291248161155e-15)
    sum a = (-8.300296482772522e-16,1.1277466800999067e-16,2.4683710821290838e-14)
    sum e = 3.157367355031642e-09
    sum de = -1.241828286284238e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.43e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023457651640893576 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1174e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.564060152956124 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.26s (niter = 11) global walltime = 276.28s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.602345669844763, dt = 0.0023457651640893576 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.9%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 267.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.640703971299622e-16,-2.2291956134200618e-17,-5.823978531482568e-15)
    sum a = (-8.203519853777142e-16,1.1145978054912966e-16,2.5021075271741257e-14)
    sum e = 3.1570762315159557e-09
    sum de = -1.2396234453898744e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002345862288625997 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94821563471233 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6046914350088524, dt = 0.002345862288625997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 270.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
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.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6215731510609104e-16,-2.2032029047086285e-17,-5.7648868456872985e-15)
    sum a = (-8.107865753501246e-16,1.1016014543967874e-16,2.5346998310279496e-14)
    sum e = 3.1567856916715735e-09
    sum de = -1.2369063902506148e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023459612950823467 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8548e+04 | 9216 |      1 | 3.228e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.160394530227297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6070372972974785, dt = 0.0023459612950823467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 287.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2526041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6026646074913997e-16,-2.1775121992025432e-17,-5.705041483430417e-15)
    sum a = (-8.013323033189971e-16,1.0887561077715266e-16,2.5661502188629175e-14)
    sum e = 3.156495837084587e-09
    sum de = -1.233683260594711e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023460622197652476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7631e+04 | 9216 |      1 | 3.335e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.320810928887813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6093832585925607, dt = 0.0023460622197652476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 320.19 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252821180555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5839757498505147e-16,-2.152119976921483e-17,-5.6444690956754875e-15)
    sum a = (-7.919878754398324e-16,1.0760599886805652e-16,2.5964620062152043e-14)
    sum e = 3.156206785582779e-09
    sum de = -1.2299612373410013e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346165055665473 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8875e+04 | 9216 |      1 | 3.192e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.462135157551213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.611729320812326, dt = 0.002346165055665473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 262.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252821180555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5655040201160561e-16,-2.1270227629214452e-17,-5.58319624470731e-15)
    sum a = (-7.827520096398462e-16,1.0635113903280025e-16,2.6256388693735135e-14)
    sum e = 3.155918653205586e-09
    sum de = -1.2257476358588108e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.41e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023462697504954156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.850237194138206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6140754858679915, dt = 0.0023462697504954156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 321.72 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5472468908216933e-16,-2.1022171222742768e-17,-5.5212494054742825e-15)
    sum a = (-7.736234459877421e-16,1.0511085632142056e-16,2.6536848465714012e-14)
    sum e = 3.1556315542845547e-09
    sum de = -1.2210499073352373e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.41e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023463762057645303 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1556e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.92153931591055 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.616421755618487, dt = 0.0023463762057645303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 284.83 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5292018647275698e-16,-2.0776996629482248e-17,-5.4586549585189755e-15)
    sum a = (-7.6460093287881995e-16,1.038849831083892e-16,2.680604335670794e-14)
    sum e = 3.1553456014171826e-09
    sum de = -1.215875632783353e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023464842769514507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1625e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.98613474791208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6187681318242515, dt = 0.0023464842769514507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 262.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.511366475105894e-16,-2.0534670329906572e-17,-5.3954391830142045e-15)
    sum a = (-7.556832377589494e-16,1.026733512140527e-16,2.7064020942002945e-14)
    sum e = 3.1550609054427685e-09
    sum de = -1.2102325193353426e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346593774791337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7847e+04 | 9216 |      1 | 3.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.524528348130833 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6211146161012029, dt = 0.002346593774791337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 283.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.493738285449044e-16,-2.0295159220787533e-17,-5.331628249776982e-15)
    sum a = (-7.468691423679485e-16,1.014757970502066e-16,2.7310832295761028e-14)
    sum e = 3.1547775754184804e-09
    sum de = -1.2041283950868187e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346704467703022 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7850e+04 | 9216 |      1 | 3.309e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.52863878465548 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6234612098759942, dt = 0.002346704467703022 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 268.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4763148894246069e-16,-2.0058430601044838e-17,-5.267248214618663e-15)
    sum a = (-7.381574440811387e-16,1.0029215266794943e-16,2.7546531955944857e-14)
    sum e = 3.1544957185962242e-09
    sum de = -1.1975712046916433e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.37e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023468160853359465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1622e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.987240239690138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6258079143436972, dt = 0.0023468160853359465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 271.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4590939106975238e-16,-1.9824452195654027e-17,-5.202325011603688e-15)
    sum a = (-7.29546954863558e-16,9.91222612532069e-17,2.7771177813660178e-14)
    sum e = 3.15421544039977e-09
    sum de = -1.190569006050768e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002346928323180548 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1320e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71146151306568 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.46s (niter = 8) global walltime = 279.68s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6281547304290331, dt = 0.002346928323180548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 288.43 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4420730027543443e-16,-1.9593192113254125e-17,-5.136884446566479e-15)
    sum a = (-7.210365008420299e-16,9.796596017263046e-17,2.7984831056675092e-14)
    sum e = 3.153936844401689e-09
    sum de = -1.1831299657333054e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023470408481574808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1456e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.837540561496105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6305016587522136, dt = 0.0023470408481574808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 269.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4252498486779895e-16,-1.9364618880933428e-17,-5.070952190529473e-15)
    sum a = (-7.126249246109585e-16,9.682309469523408e-17,2.818755611183173e-14)
    sum e = 3.1536600323005394e-09
    sum de = -1.175262354976788e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023471509899032307 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1616e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.985841385276977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.632848699600371, dt = 0.0023471509899032307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.8%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 323.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4086221772697587e-16,-1.913870163429467e-17,-5.004553838305506e-15)
    sum a = (-7.043110887927786e-16,9.569350825007199e-17,2.837942040656526e-14)
    sum e = 3.1533851041700512e-09
    sum de = -1.1669745532467067e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.37e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023472644118350534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7693e+04 | 9216 |      1 | 3.328e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.39084438058133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6351958505902742, dt = 0.0023472644118350534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 299.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3921877028756223e-16,-1.8915409323048957e-17,-4.937714667518006e-15)
    sum a = (-6.960938510484139e-16,9.457704645565759e-17,2.856049504723837e-14)
    sum e = 3.153112157450563e-09
    sum de = -1.1582750161695496e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023473512763384037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.822180827665488 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6375431150021091, dt = 0.0023473512763384037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.09 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.4%)
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.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.375944375126948e-16,-1.8694714087669553e-17,-4.8704606379883106e-15)
    sum a = (-6.879721874450214e-16,9.347356947148949e-17,2.8730852041621664e-14)
    sum e = 3.1528412910686257e-09
    sum de = -1.1491723999656323e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023474147346970536 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.853884504299135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6398904662784475, dt = 0.0023474147346970536 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 325.37 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3598901366148297e-16,-1.8476587977591884e-17,-4.8028174687104884e-15)
    sum a = (-6.799450689709611e-16,9.238294066460179e-17,2.889056715324144e-14)
    sum e = 3.1525726014608357e-09
    sum de = -1.1396754561184569e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023474823121831002 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1405e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.79707097936873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6422378810131446, dt = 0.0023474823121831002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 304.34 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3440227612691917e-16,-1.8261000737398555e-17,-4.734809914525865e-15)
    sum a = (-6.720113799535279e-16,9.130500322968762e-17,2.9039721287847445e-14)
    sum e = 3.1523061798045287e-09
    sum de = -1.129792916649127e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347554483439455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1338e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.736534272974282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6445853633253278, dt = 0.002347554483439455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 273.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3283400489636254e-16,-1.8047922487203138e-17,-4.6664625182756085e-15)
    sum a = (-6.64170025041193e-16,9.023961209199372e-17,2.917839821751046e-14)
    sum e = 3.1520421152071304e-09
    sum de = -1.1195335777131099e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.46e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023476315789635158 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1632e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.007209342295955 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.82s (niter = 6) global walltime = 282.06s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6469329178087673, dt = 0.0023476315789635158 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (1.9%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 286.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.253038194444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3128398237572631e-16,-1.7837323656089134e-17,-4.59779961337166e-15)
    sum a = (-6.564199118028212e-16,8.918661808079994e-17,2.930668454195049e-14)
    sum e = 3.1517804946885655e-09
    sum de = -1.1089063007388715e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023477137777469775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1551e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.93334145882501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6492805493877307, dt = 0.0023477137777469775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 290.30 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2975199350997046e-16,-1.7629175025051366e-17,-4.5288453217770586e-15)
    sum a = (-6.487599673278017e-16,8.814587589977336e-17,2.94246695581148e-14)
    sum e = 3.151521403184825e-09
    sum de = -1.0979200073744935e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.71e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023478011043816306 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.869312131526208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6516282631654777, dt = 0.0023478011043816306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 300.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2823782582091978e-16,-1.7423447722610073e-17,-4.459623552569493e-15)
    sum a = (-6.411891291873898e-16,8.711723837063268e-17,2.953244521801718e-14)
    sum e = 3.151264923553061e-09
    sum de = -1.0865836738629845e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002347893430620811 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1355e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.75600693568763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6539760642698593, dt = 0.002347893430620811 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 326.56 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2674126948777943e-16,-1.7220113249088554e-17,-4.3901580005418984e-15)
    sum a = (-6.337063472313224e-16,8.610056550683215e-17,2.963010604943993e-14)
    sum e = 3.1510111365769694e-09
    sum de = -1.0749063277203636e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023479904811809196 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1445e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83968706070834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6563239577004802, dt = 0.0023479904811809196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 290.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2526211740386562e-16,-1.7019143460524176e-17,-4.320472144973607e-15)
    sum a = (-6.263105876094032e-16,8.509571699356732e-17,2.971774904221071e-14)
    sum e = 3.1507601209711288e-09
    sum de = -1.0628970437052383e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348091843665023 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8554e+04 | 9216 |      1 | 3.228e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.188967970411323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6586719481816612, dt = 0.002348091843665023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 285.41 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2380016520796494e-16,-1.682051058886377e-17,-4.250589248371927e-15)
    sum a = (-6.190008253331786e-16,8.410255379842212e-17,2.979547367400256e-14)
    sum e = 3.150511953384312e-09
    sum de = -1.0505649397572747e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.43e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348196982226323 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.798018406695107 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.51s (niter = 5) global walltime = 283.85s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.661020040025326, dt = 0.002348196982226323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 308.71 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2235521133455995e-16,-1.6624187245156818e-17,-4.180532354728938e-15)
    sum a = (-6.117760558588892e-16,8.312093655352782e-17,2.9863381758404256e-14)
    sum e = 3.150266708401291e-09
    sum de = -1.0379191722344985e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023483052544528244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1452e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.849742590902036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6633682370075524, dt = 0.0023483052544528244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 324.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.209270569990254e-16,-1.643014642832504e-17,-4.1103242876457615e-15)
    sum a = (-6.04635285832602e-16,8.215073206652342e-17,2.9921577403457533e-14)
    sum e = 3.150024458543091e-09
    sum de = -1.0249689323279777e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.41e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023484159309251377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.872526996674015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6657165422620053, dt = 0.0023484159309251377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 293.11 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1951550621518933e-16,-1.6238361508694903e-17,-4.039987648024299e-15)
    sum a = (-5.975775309039896e-16,8.119180720689076e-17,2.997016696210778e-14)
    sum e = 3.149785274265005e-09
    sum de = -1.0117234432534467e-10
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348520709030177 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1443e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.844421519373704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6680649581929303, dt = 0.002348520709030177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 261.38 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1812037028061825e-16,-1.6048806845189223e-17,-3.969545036017876e-15)
    sum a = (-5.906018522725749e-16,8.024403455450188e-17,3.0009258874205764e-14)
    sum e = 3.14954922471167e-09
    sum de = -9.981919998073145e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.72e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348593824204312 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8200e+04 | 9216 |      1 | 3.268e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.87041897377383 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6704134789019605, dt = 0.002348593824204312 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 258.92 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252821180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1674147768061047e-16,-1.5861459133057432e-17,-3.899019571872261e-15)
    sum a = (-5.837073881094914e-16,7.930729468605018e-17,3.0038963566891805e-14)
    sum e = 3.1493163793883202e-09
    sum de = -9.843840707620695e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023486679614906202 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.983e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.341796588397987 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 4) global walltime = 285.36s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6727620727261647, dt = 0.0023486679614906202 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.6%)
   LB compute        : 270.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
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.252821180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1537863898715852e-16,-1.5676292641486192e-17,-3.828433138414479e-15)
    sum a = (-5.768931940837227e-16,7.838146372112572e-17,3.005939431204859e-14)
    sum e = 3.149086802198755e-09
    sum de = -9.703089642848868e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348743078577815 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.25781411619687 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6751107406876553, dt = 0.002348743078577815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.29 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 349.89 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.2530381944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1403166723020294e-16,-1.5493281955982286e-17,-3.757807351561891e-15)
    sum a = (-5.701583368649889e-16,7.746640946497553e-17,3.007066640826381e-14)
    sum e = 3.148860554915135e-09
    sum de = -9.559759947768296e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.38e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348819079243472 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1168e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.595789926656256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.677459483766233, dt = 0.002348819079243472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 285.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2528211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1270037767498317e-16,-1.5312401989012786e-17,-3.687163558948426e-15)
    sum a = (-5.635018883413911e-16,7.656200999080016e-17,3.0072897082066153e-14)
    sum e = 3.1486376971402514e-09
    sum de = -9.41394483872517e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.37e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023488958145329274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1487e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.889728732268928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6798083028454767, dt = 0.0023488958145329274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 288.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1138458784454588e-16,-1.5133627939534976e-17,-3.616522837133653e-15)
    sum a = (-5.56922939516616e-16,7.56681396651822e-17,3.006620545228662e-14)
    sum e = 3.1484182863098424e-09
    sum de = -9.265737573492199e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023489586897314377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0266e+04 | 9216 |      1 | 3.045e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.76983631578188 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 286.55s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6821571986600097, dt = 0.0023489586897314377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.7%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.99 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1008412549900056e-16,-1.4956936409497066e-17,-3.5459064215428225e-15)
    sum a = (-5.504206272908391e-16,7.478468166366669e-17,3.005071257612515e-14)
    sum e = 3.1482023790291884e-09
    sum de = -9.115232309811885e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023490109419371406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1345e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.761396625907413 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.684506157349741, dt = 0.0023490109419371406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 297.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.087988182543864e-16,-1.4782303977166002e-17,-3.4753351649498287e-15)
    sum a = (-5.439940907219353e-16,7.391151976527145e-17,3.002654142118951e-14)
    sum e = 3.147990029317914e-09
    sum de = -8.962523013732512e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023490643966538067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.915051851450915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6868551682916781, dt = 0.0023490643966538067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 269.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0752848910617011e-16,-1.4609706591101972e-17,-3.4048292746968903e-15)
    sum a = (-5.376424450662172e-16,7.304853261013008e-17,2.999381654978615e-14)
    sum e = 3.1477812878881357e-09
    sum de = -8.807702802639437e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.73e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023491192399991917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8422e+04 | 9216 |      1 | 3.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.079786650574878 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 287.46s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6892042326883319, dt = 0.0023491192399991917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 294.51 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0627296310658903e-16,-1.4439120483908263e-17,-3.3344086595728885e-15)
    sum a = (-5.313648155225052e-16,7.219560263716639e-17,2.995266410900607e-14)
    sum e = 3.1475762032755314e-09
    sum de = -8.650864620083128e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023491756065789626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1456e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.865011667226458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.691553351928331, dt = 0.0023491756065789626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 269.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0503206729386485e-16,-1.427052215228009e-17,-3.264092927694682e-15)
    sum a = (-5.251603364820507e-16,7.135261080713229e-17,2.990321180879175e-14)
    sum e = 3.147374821832705e-09
    sum de = -8.492101197089992e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023492335767598214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1368e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.784871128506204 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 288.05s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.69390252753491, dt = 0.0023492335767598214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.7%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 337.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0380563070384948e-16,-1.4103888371205467e-17,-3.193901384525599e-15)
    sum a = (-5.190281535868801e-16,7.051944249802475e-17,2.9845588758751984e-14)
    sum e = 3.147177187740133e-09
    sum de = -8.331505013335314e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023492931755287965 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1333e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.75322305656597 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 288.34s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6962517611116699, dt = 0.0023492931755287965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0259348436967734e-16,-1.3939196179686203e-17,-3.123853031538146e-15)
    sum a = (-5.129674216854589e-16,6.969598097054542e-17,2.9779925409727136e-14)
    sum e = 3.1469833430176845e-09
    sum de = -8.169168259198166e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023493543729799318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1477e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.8858028200263 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 288.64s (max_walltime = 290.21s)  [SPH][rank=0]
---------------- t = 1.6986010542871988, dt = 0.0013989457128016358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0188299001228764e-16,-1.3842662562158918e-17,-3.082269663789145e-15)
    sum a = (-5.094149493477346e-16,6.921331309361521e-17,2.9737323317307527e-14)
    sum e = 3.1468709566819635e-09
    sum de = -8.071181381554537e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349391533782209 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1396e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.157023855054632 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 288.93s (max_walltime = 290.21s)  [SPH][rank=0]
Info: iteration since start : 748                                                     [SPH][rank=0]
Info: time since start : 288.931687823 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 17):
   -> t = 1.7000000000000004 >= 1.7000000000000004
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.7000000000000004 -> 1.8000000000000005

[Simulation] Evolve until next trigger(s) :
   -> t = 1.8000000000000005 (current = 1.7000000000000004)
   -> iter = None (current = 747)
   -> walltime = 290.208995673 (current = 291.821883429)

Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = 290.21s)      [SPH][rank=0]
---------------- t = 1.7000000000000004, dt = 0.002349391533782209 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.2%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 298.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0068865970107762e-16,-1.368039100340516e-17,-3.0124348471558565e-15)
    sum a = (-5.034432978546267e-16,6.840195524041991e-17,2.9658837479601087e-14)
    sum e = 3.1466820298537725e-09
    sum de = -7.906795264301331e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349455092169545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.063e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.615468919887025 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 292.13s > 290.21s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 9):
   -> walltime = 292.12876595200004 >= 290.208995673
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000009.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (56.2%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000009.sham              [Shamrock Dump][rank=0]
              - took 1.40 ms, bandwidth = 2.48 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 292.12876595200004 -> 322.12876595200004

[Simulation] Evolve until next trigger(s) :
   -> t = 1.8000000000000005 (current = 1.7023493915337826)
   -> iter = None (current = 748)
   -> walltime = 322.12876595200004 (current = 292.13266101100004)

Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = 322.13s)      [SPH][rank=0]
---------------- t = 1.7023493915337826, dt = 0.002349455092169545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (0.9%)
   patch tree reduce : 1.26 us    (0.4%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 275.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.951285715499031e-17,-1.3520636780047991e-17,-2.9428449373938164e-15)
    sum a = (-4.975642852000818e-16,6.760318365325481e-17,2.957292490122877e-14)
    sum e = 3.1464981946520723e-09
    sum de = -7.740365486556132e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023495199345786788 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.063124537997414 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.28s (niter = 25) global walltime = 292.42s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.704698846625952, dt = 0.0023495199345786788 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.9%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 263.45 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.835072618637787e-17,-1.336274009142199e-17,-2.873463684686053e-15)
    sum a = (-4.917536316219799e-16,6.681369993013533e-17,2.9479449685852284e-14)
    sum e = 3.146318288612598e-09
    sum de = -7.572526865082642e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023495858610200378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.9527774713417 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.7070483665605307, dt = 0.0023495858610200378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 306.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.720213492948985e-17,-1.3206683020527498e-17,-2.8043089974523317e-15)
    sum a = (-4.860106745645682e-16,6.603341546142147e-17,2.9378549376989716e-14)
    sum e = 3.1461423375670916e-09
    sum de = -7.403366576623752e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349652637450057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9100e+04 | 9216 |      1 | 3.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.708383145949853 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7093979524215508, dt = 0.002349652637450057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 347.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.606692545158582e-17,-1.3052444104494919e-17,-2.7353981483979937e-15)
    sum a = (-4.80334627302587e-16,6.526222021370713e-17,2.927036089910113e-14)
    sum e = 3.145970371706279e-09
    sum de = -7.232974568965697e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023497200033649086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1576e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.98135763012254 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7117476050590008, dt = 0.0023497200033649086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (57.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.494494193919683e-17,-1.2900002180530627e-17,-2.6667480985547663e-15)
    sum a = (-4.747247094637555e-16,6.450001049395828e-17,2.915502212226647e-14)
    sum e = 3.145802419100999e-09
    sum de = -7.061440252772317e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023497876800127903 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1507e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.91941141859738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7140973250623657, dt = 0.0023497876800127903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 354.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.252604166666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.383603053371441e-17,-1.2749336340353483e-17,-2.5983754936788716e-15)
    sum a = (-4.691801530308221e-16,6.374668149194695e-17,2.903267179956615e-14)
    sum e = 3.145638505752456e-09
    sum de = -6.888852511085177e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023498553789364153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1532e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.942513892690414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7164471127423784, dt = 0.0023498553789364153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 326.90 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.274003929260616e-17,-1.2600425939582831e-17,-2.5302966623275443e-15)
    sum a = (-4.637001971258575e-16,6.300212976458963e-17,2.890344954361444e-14)
    sum e = 3.1454786556029333e-09
    sum de = -6.715299646682844e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234992151036551 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8386e+04 | 9216 |      1 | 3.247e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.05540474627019 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7187969681213149, dt = 0.00234992151036551 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 313.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.165681877680394e-17,-1.2453250674170589e-17,-2.4625276513264276e-15)
    sum a = (-4.582840935845698e-16,6.226625313412726e-17,2.8767495819289855e-14)
    sum e = 3.145322890635025e-09
    sum de = -6.540869461918236e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023499662762367333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1574e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.983105123153294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7211468896316804, dt = 0.0023499662762367333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 321.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.058623032100953e-17,-1.2307791705115895e-17,-2.3950847465883357e-15)
    sum a = (-4.529311513843042e-16,6.153895813380767e-17,2.862495305855578e-14)
    sum e = 3.1451712320605835e-09
    sum de = -6.365650595394879e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350012935862584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1413e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.835346952068576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7234968559079171, dt = 0.002350012935862584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 292.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.952812587318654e-17,-1.2164028916974604e-17,-2.327983221955869e-15)
    sum a = (-4.476406302660891e-16,6.082014368636712e-17,2.8475963033934256e-14)
    sum e = 3.1450236973903613e-09
    sum de = -6.189729297080905e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350061495147074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9472e+04 | 9216 |      1 | 3.127e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.05431092355538 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7258468688437798, dt = 0.002350061495147074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 265.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.848235926091421e-17,-1.2021942450795646e-17,-2.2612380219350186e-15)
    sum a = (-4.424117961123613e-16,6.010971259370893e-17,2.8320668080696718e-14)
    sum e = 3.1448803021663534e-09
    sum de = -6.013191092761844e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023501118812307236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0884e+04 | 9216 |      1 | 2.984e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.351517264395568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7281969303389269, dt = 0.0023501118812307236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 308.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.744878608352444e-17,-1.1881512679353741e-17,-2.1948637597377464e-15)
    sum a = (-4.37243929881703e-16,5.940756408002402e-17,2.8159211011565575e-14)
    sum e = 3.1447410599441527e-09
    sum de = -5.836120768267627e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023501639460276353 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.880361559009515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7305470422201576, dt = 0.0023501639460276353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.28 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 260.85 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.642726369564092e-17,-1.1742720228028125e-17,-2.1288747183572415e-15)
    sum a = (-4.321363178912016e-16,5.871360008754258e-17,2.799173508735486e-14)
    sum e = 3.144605982314255e-09
    sum de = -5.6586023478625e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023502174717609232 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.235426332535674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7328972061661854, dt = 0.0023502174717609232 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 325.50 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.541765123393244e-17,-1.1605545963834486e-17,-2.0632848514295226e-15)
    sum a = (-4.2708825609838515e-16,5.802772999991672e-17,2.7818383948283266e-14)
    sum e = 3.1444750789230128e-09
    sum de = -5.4807190686785796e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235027217831872 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.911341120915555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7352474236379463, dt = 0.00235027217831872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 301.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.441980960947448e-17,-1.1469970976305652e-17,-1.998107784029405e-15)
    sum a = (-4.2209904874433777e-16,5.73498551976195e-17,2.7639301549318677e-14)
    sum e = 3.14434835749318e-09
    sum de = -5.3025533554336267e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023503208411607577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1525e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.942036511943392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7375976958162649, dt = 0.0023503208411607577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 303.48 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (59.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.343360441580841e-17,-1.1335977011501707e-17,-1.933357003751538e-15)
    sum a = (-4.17168022393375e-16,5.66798847434474e-17,2.7454632646053736e-14)
    sum e = 3.1442258242093662e-09
    sum de = -5.12418730541636e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350352936730018 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.973e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46047564134428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7399480166574257, dt = 0.002350352936730018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 268.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
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.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.24589070763285e-17,-1.1203546600691149e-17,-1.8690459428726968e-15)
    sum a = (-4.1229453548386954e-16,5.601773295196588e-17,2.726452305266078e-14)
    sum e = 3.1441074838313486e-09
    sum de = -4.945702919436006e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023503851461611864 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1706e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.109514957370994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7422983695941556, dt = 0.0023503851461611864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 309.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2523871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.149558333134007e-17,-1.1072661498500114e-17,-1.8051872251935133e-15)
    sum a = (-4.074779163490156e-16,5.5363307667424126e-17,2.706911738519747e-14)
    sum e = 3.143993338270502e-09
    sum de = -4.767179997961697e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350417859640346 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1609e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.02124644802317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7446487547403169, dt = 0.002350417859640346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.8%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 299.70 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
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.252387152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.054350041438392e-17,-1.0943303667246065e-17,-1.7417931275333273e-15)
    sum a = (-4.0271750144540816e-16,5.471651776761378e-17,2.68685602869682e-14)
    sum e = 3.143883387585408e-09
    sum de = -4.5886973554422265e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023504514337136222 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0921e+04 | 9216 |      1 | 2.980e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38989089394601 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7469991725999572, dt = 0.0023504514337136222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 306.28 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.252387152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.960252696775306e-17,-1.0815455262755657e-17,-1.6788755779793077e-15)
    sum a = (-3.980126359936102e-16,5.407727637510177e-17,2.666299635476908e-14)
    sum e = 3.1437776299808413e-09
    sum de = -4.4103327890162057e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350486180465787 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.047e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.766012558993992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7493496240336708, dt = 0.002350486180465787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 263.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252387152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.867253304612381e-17,-1.0689098624745679e-17,-1.6164461575364175e-15)
    sum a = (-3.933626653168848e-16,5.344549291424354e-17,2.6452570085213624e-14)
    sum e = 3.143676061836409e-09
    sum de = -4.2321630694363265e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023505223578290666 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8005e+04 | 9216 |      1 | 3.291e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.713475967123653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7517001102141365, dt = 0.0023505223578290666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.0%)
   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.25 us    (0.4%)
   LB compute        : 286.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.252170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.775339015242215e-17,-1.0564216297881127e-17,-1.5545161021480025e-15)
    sum a = (-3.887669512771655e-16,5.282108162307459e-17,2.6237425836739206e-14)
    sum e = 3.143578677735162e-09
    sum de = -4.054263918000943e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350560161307783 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0320e+04 | 9216 |      1 | 3.040e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.839223078047787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7540506325719656, dt = 0.002350560161307783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 314.96 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.252170138888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.684497120901042e-17,-1.0440791014135842e-17,-1.4930963049249683e-15)
    sum a = (-3.8422485661540715e-16,5.2203954336989254e-17,2.6017707806148425e-14)
    sum e = 3.1434854704926503e-09
    sum de = -3.8767099802150494e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023505997173834696 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.09996685529217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7564011927332734, dt = 0.0023505997173834696 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 302.72 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2519531249999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.594715060292189e-17,-1.0318805711142686e-17,-1.4321973185338972e-15)
    sum a = (-3.7973575283248757e-16,5.1594028344431737e-17,2.579355995432565e-14)
    sum e = 3.1433964311863016e-09
    sum de = -3.699574827603374e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023506410788027014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1534e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.95466475378024 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7587517924506568, dt = 0.0023506410788027014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 330.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.251736111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.505980418646595e-17,-1.0198243514591595e-17,-1.3718293578748067e-15)
    sum a = (-3.752990205757046e-16,5.099121718780133e-17,2.5565125937592894e-14)
    sum e = 3.143311549183944e-09
    sum de = -3.5229309518821334e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023506842218776625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.91654434228747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7611024335294596, dt = 0.0023506842218776625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 287.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.251736111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.418280928278248e-17,-1.007908776130235e-17,-1.3120023028956654e-15)
    sum a = (-3.709140464322879e-16,5.039543828006419e-17,2.5332549058599888e-14)
    sum e = 3.1432308121719647e-09
    sum de = -3.346849752459905e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507290459016655 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.153458796239597 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.38s (niter = 18) global walltime = 299.90s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.7634531177513373, dt = 0.0023507290459016655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 303.02 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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.251736111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.331604470502507e-17,-9.961321984758578e-18,-1.252725701415993e-15)
    sum a = (-3.6658022375607984e-16,4.9806608677011147e-17,2.5095972271156668e-14)
    sum e = 3.143154206183195e-09
    sum de = -3.1714015291335394e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.37e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507653303706856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.898235303701593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.765803846797239, dt = 0.0023507653303706856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 267.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.251519097222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.245939444565537e-17,-9.844930425255591e-18,-1.1940090238330925e-15)
    sum a = (-3.6229697299645767e-16,4.9224651612995266e-17,2.4855539182559837e-14)
    sum e = 3.1430817159425464e-09
    sum de = -2.996656211528112e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.37e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507783949587727 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1718e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.125967179101544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7681546121276097, dt = 0.0023507783949587727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 301.25 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.251519097222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.161274900774761e-17,-9.729898199984164e-18,-1.135861760211231e-15)
    sum a = (-3.580637453281133e-16,4.864949037492127e-17,2.461139451975252e-14)
    sum e = 3.143013324920335e-09
    sum de = -2.82268365512216e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.38e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350790263657055 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1478e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.905702428268896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7705053905225685, dt = 0.002350790263657055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 332.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.251302083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.077599193170905e-17,-9.616209490072768e-18,-1.0782924985975153e-15)
    sum a = (-3.5387996034130545e-16,4.8081047235772364e-17,2.4363680232644427e-14)
    sum e = 3.142949014189492e-09
    sum de = -2.6495508971338293e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350801280350475 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1602e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.019773372730626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7728561807862255, dt = 0.002350801280350475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 312.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (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.251085069444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.99490080680856e-17,-9.503848647910445e-18,-1.0213094900805328e-15)
    sum a = (-3.4974503988677156e-16,4.7519243831327375e-17,2.411253769376859e-14)
    sum e = 3.1428887632831873e-09
    sum de = -2.4773237640665055e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508117790030547 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1464e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.89297042355562 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.775206982066576, dt = 0.0023508117790030547 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 290.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2510850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.913168349709697e-17,-9.392800193863416e-18,-9.649206455498232e-16)
    sum a = (-3.456584188752366e-16,4.6964001166005675e-17,2.38581076213512e-14)
    sum e = 3.142832550188394e-09
    sum de = -2.306066868716663e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350822074078401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1705e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.113895799799185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7775577938455789, dt = 0.002350822074078401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 281.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.250759548611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.832390549413046e-17,-9.28304881880254e-18,-9.09133538112236e-16)
    sum a = (-3.416195276997076e-16,4.6415243993000384e-17,2.3600530058877136e-14)
    sum e = 3.1427803513772593e-09
    sum de = -2.1358435895462084e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350832451482673 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1734e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.141340041971592 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7799086159196573, dt = 0.002350832451482673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 280.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.250542534722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.752556257969139e-17,-9.174579372144402e-18,-8.539554056874706e-16)
    sum a = (-3.376278116808933e-16,4.587289704620926e-17,2.333994428592684e-14)
    sum e = 3.142732141839187e-09
    sum de = -1.9667160542552695e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508431602997054 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9108e+04 | 9216 |      1 | 3.166e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.729970803671105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.78225944837114, dt = 0.0023508431602997054 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 259.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.250542534722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.673654447567169e-17,-9.067376869238905e-18,-7.993931540477641e-16)
    sum a = (-3.336827222638759e-16,4.533688449827472e-17,2.3076488751733816e-14)
    sum e = 3.1426878951131466e-09
    sum de = -1.7987451349438717e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508544055481414 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1775e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.178946785505055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7846102915314397, dt = 0.0023508544055481414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   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.14 us    (0.4%)
   LB compute        : 278.57 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.25
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.595674212111321e-17,-8.961426495361275e-18,-7.454533601214813e-16)
    sum a = (-3.297837106597814e-16,4.4807131860251845e-17,2.2810300976837497e-14)
    sum e = 3.14264758331973e-09
    sum de = -1.6319904437789308e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.40e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235086634216526 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1654e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.068261516926448 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7869611459369878, dt = 0.00235086634216526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 308.75 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2497829861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.518604769982373e-17,-8.856713602819562e-18,-6.921422756514147e-16)
    sum a = (-3.259302396083924e-16,4.428356863649756e-17,2.254151758970103e-14)
    sum e = 3.1426111771930127e-09
    sum de = -1.4665102977987784e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.41e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508790704076694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1581e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.00128254184841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.789312012279153, dt = 0.0023508790704076694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 287.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.249782986111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.442435461900422e-17,-8.753223701829897e-18,-6.394658306433537e-16)
    sum a = (-3.2212177267970224e-16,4.37661199284104e-17,2.2270274310949355e-14)
    sum e = 3.142578646113199e-09
    sum de = -1.3023617381661341e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508926327995804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1843e+04 | 9216 |      1 | 2.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.242186273821066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7916628913495607, dt = 0.0023508926327995804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 265.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2495659722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.367155753911828e-17,-8.65094248247244e-18,-5.874296369092115e-16)
    sum a = (-3.1835778751021034e-16,4.325471271883108e-17,2.1996705931293097e-14)
    sum e = 3.1425499581377008e-09
    sum de = -1.1396005192307279e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235090701271973 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9727e+04 | 9216 |      1 | 3.100e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.298589289386552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7940137839823602, dt = 0.00235090701271973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.6%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 346.41 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 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.2490234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.292755234643685e-17,-8.549855806835039e-18,-5.360389916228276e-16)
    sum a = (-3.1463776149682627e-16,4.274927886103968e-17,2.1720946235263153e-14)
    sum e = 3.142525080032334e-09
    sum de = -9.782810909402437e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.42e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235092213465258 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8333e+04 | 9216 |      1 | 3.253e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.019063403303736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.79636469099508, dt = 0.00235092213465258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 299.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.2490234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.219223618612719e-17,-8.449949694757377e-18,-4.852988810340941e-16)
    sum a = (-3.109611816422885e-16,4.224974792847832e-17,2.144312797685858e-14)
    sum e = 3.142503977302508e-09
    sum de = -8.184566028262712e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.43e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509378661194114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.410069203775983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7987156131297324, dt = 0.001284386870268106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 341.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248806423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.179716340374865e-17,-8.396271852453327e-18,-4.580841735497828e-16)
    sum a = (-3.089858182027953e-16,4.1981359039534375e-17,2.1291680427086215e-14)
    sum e = 3.1424953325883817e-09
    sum de = -7.323204684060127e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.43e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509466395821334 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1852e+04 | 9216 |      1 | 2.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.980466560146121 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 791                                                     [SPH][rank=0]
Info: time since start : 304.65909002 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 18):
   -> t = 1.8000000000000005 >= 1.8000000000000005
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.8000000000000005 -> 1.9000000000000006

[Simulation] Evolve until next trigger(s) :
   -> t = 1.9000000000000006 (current = 1.8000000000000005)
   -> iter = None (current = 790)
   -> walltime = 322.12876595200004 (current = 307.66361410400003)

Info: evolve_until (target_time = 1.90s, niter_max = -1, max_walltime = 322.13s)      [SPH][rank=0]
---------------- t = 1.8000000000000005, dt = 0.0023509466395821334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.3%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 286.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248806423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.107202279833554e-17,-8.297748275006535e-18,-4.081258276209573e-16)
    sum a = (-3.0536011451570564e-16,4.148874102278107e-17,2.1009771038985907e-14)
    sum e = 3.1424786800758384e-09
    sum de = -5.743688927504081e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350962932431935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.200e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.445280795540196 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.52s (niter = 11) global walltime = 307.98s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8023509466395826, dt = 0.002350962932431935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 291.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 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.248806423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.03583944059251e-17,-8.200788842123415e-18,-3.590640116540496e-16)
    sum a = (-3.01791971406535e-16,4.1003943850641444e-17,2.0727309598920768e-14)
    sum e = 3.142467033146827e-09
    sum de = -4.185853248855322e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.44e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509792686719332 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9073e+04 | 9216 |      1 | 3.170e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.69903433580351 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8047019095720145, dt = 0.0023509792686719332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.67 us   (7.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 283.22 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248806423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.965308202383068e-17,-8.10495929023893e-18,-3.10666564679122e-16)
    sum a = (-2.9826541077496985e-16,4.052479691804377e-17,2.0443244561043394e-14)
    sum e = 3.142459023133445e-09
    sum de = -2.644714174327587e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.45e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509953521698226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1826e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.22711099732812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8070528888406865, dt = 0.0023509953521698226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.6%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 316.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.248806423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.895600686487931e-17,-8.010248913352641e-18,-2.629385072403352e-16)
    sum a = (-2.9478003445400425e-16,4.005124468775061e-17,2.015771058403122e-14)
    sum e = 3.142454616643941e-09
    sum de = -1.1207763673617758e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235101085694674 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1655e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.0704270779362 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.8094038841928564, dt = 0.00235101085694674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 288.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.248372395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.826707285519047e-17,-7.91664466185746e-18,-2.158831553324542e-16)
    sum a = (-2.9133536373722954e-16,3.9583222835656574e-17,1.987083404316744e-14)
    sum e = 3.1424537726957002e-09
    sum de = 3.8550146139300556e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.48e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002351025436135114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.690086175278104 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.811754895049803, dt = 0.002351025436135114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 320.99 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2479383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.758618523385563e-17,-7.824133660385997e-18,-1.695035439908886e-16)
    sum a = (-2.879309262903164e-16,3.9120668200835145e-17,1.958274011073279e-14)
    sum e = 3.1424564492774425e-09
    sum de = 1.873673537179905e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023510387314961355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9066e+04 | 9216 |      1 | 3.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.69297407084364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8141059204859382, dt = 0.0023510387314961355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 301.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2475043402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.691325043374408e-17,-7.732703193152827e-18,-1.2380242160319267e-16)
    sum a = (-2.8456625255762475e-16,3.866351663390425e-17,1.9293552676061382e-14)
    sum e = 3.142462603338994e-09
    sum de = 3.3433071640645295e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023510503832313134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1462e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.893846398240054 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8164569592174344, dt = 0.0023510503832313134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 300.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.247287326388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.624817607553039e-17,-7.642340708010283e-18,-7.878225262006878e-17)
    sum a = (-2.812408809846248e-16,3.821170384278248e-17,1.9003394325696638e-14)
    sum e = 3.1424721908201862e-09
    sum de = 4.793982847028873e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023510354113539093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1648e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.06517272913605 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8188080096006658, dt = 0.0023510354113539093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 268.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.247287326388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.559087786332278e-17,-7.55303475647552e-18,-3.4445688074573814e-17)
    sum a = (-2.7795438895482715e-16,3.7765173483498234e-17,1.871238937597067e-14)
    sum e = 3.142485166561807e-09
    sum de = 6.2252793223038e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.47e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023510139120897586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1819e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.222162674956923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8211590450120196, dt = 0.0023510139120897586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 296.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2470703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4941266557563276e-17,-7.464773212714734e-18,9.205318205946331e-18)
    sum a = (-2.747063320246222e-16,3.732386589720517e-17,1.8420658162175795e-14)
    sum e = 3.1425014844048292e-09
    sum de = 7.636801945049113e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.48e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509924570031897 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9015e+04 | 9216 |      1 | 3.176e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.646303241388665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8235100589241093, dt = 0.0023509924570031897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 324.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2470703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.4299252156593466e-17,-7.377543845532207e-18,5.2169214526996017e-17)
    sum a = (-2.714962605122844e-16,3.688771890409086e-17,1.812831871535946e-14)
    sum e = 3.142521097331861e-09
    sum de = 9.028173529082232e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.48e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350971307570778 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1622e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.040063661926386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8258610513811124, dt = 0.002350971307570778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.24 us   (8.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 275.88 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.2468532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.366474566490813e-17,-7.29133456587425e-18,9.444472776331976e-17)
    sum a = (-2.6832372866172406e-16,3.645667297348397e-17,1.783548756201606e-14)
    sum e = 3.1425439574678116e-09
    sum de = 1.039903041939053e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.49e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350950686329393 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8819e+04 | 9216 |      1 | 3.198e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.465981516767982 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.42s (niter = 8) global walltime = 311.30s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.828212022688683, dt = 0.002350950686329393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.8%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 296.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.246419270833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.303765907659421e-17,-7.206133413805174e-18,1.3603086066919429e-16)
    sum a = (-2.651882952800266e-16,3.603066716896922e-17,1.754227963101518e-14)
    sum e = 3.142570016103673e-09
    sum de = 1.1749022645690954e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.74e-03 |
|       force |  1.50e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350930772314 cfl multiplier : 0.9999999999999997           [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1557e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.98020675277298 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8305629733750124, dt = 0.002350930772314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 303.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2463107638888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2417905377351014e-17,-7.121928568905387e-18,1.7692688697780055e-16)
    sum a = (-2.6208952619383337e-16,3.560964262324105e-17,1.7248808193244592e-14)
    sum e = 3.1425992237295768e-09
    sum de = 1.3077813737481867e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.51e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023509116977530483 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9961e+04 | 9216 |      1 | 3.076e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.514179521837224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8329139041473264, dt = 0.0023509116977530483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 273.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
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.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.180539854012741e-17,-7.038708343263404e-18,2.1713234641392067e-16)
    sum a = (-2.5902699279596724e-16,3.5193542688707745e-17,1.6955184828403095e-14)
    sum e = 3.142631530066572e-09
    sum de = 1.4385080733027608e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.53e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508935460994397 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1806e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.208567062078767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8352648158450795, dt = 0.0023508935460994397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.4%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 424.39 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.120005352732576e-17,-6.956461177925644e-18,2.566470396979996e-16)
    sum a = (-2.560002678231828e-16,3.4782305548506715e-17,1.666151942698865e-14)
    sum e = 3.1426668840983205e-09
    sum de = 1.5670514139942208e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.54e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508763514344276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1591e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.010143075053385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.837615709391179, dt = 0.0023508763514344276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 330.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.060178630577414e-17,-6.875175665839367e-18,2.954710236500461e-16)
    sum a = (-2.5300893115045905e-16,3.437587813807095e-17,1.6367920115492114e-14)
    sum e = 3.142705234102216e-09
    sum de = 1.6933817778096477e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.55e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508600992381834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.947106112672927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8399665857426133, dt = 0.0023508600992381834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 300.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.24609375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.001051383614553e-17,-6.794840515808673e-18,3.336046061175075e-16)
    sum a = (-2.5005256887192607e-16,3.3974202026949354e-17,1.6074493250141612e-14)
    sum e = 3.1427465276796825e-09
    sum de = 1.8174708710935216e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.56e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508447284607136 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1597e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.015558255444525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8423174458418514, dt = 0.0023508447284607136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2458767361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9426154069758086e-17,-6.715444584240625e-18,3.710483410825951e-16)
    sum a = (-2.471307703130166e-16,3.35772230725373e-17,1.5781343444146443e-14)
    sum e = 3.14279071178614e-09
    sum de = 1.9392917288815285e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.57e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508301348628027 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.100350611134548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8446682905703122, dt = 0.0023508301348628027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 330.69 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2458767361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8848625955140805e-17,-6.636976854348493e-18,4.0780302398125954e-16)
    sum a = (-2.442431296618388e-16,3.3184884358776767e-17,1.5488573538235757e-14)
    sum e = 3.1428377327609427e-09
    sum de = 2.0588186934845853e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.59e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023508161754508643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8205e+04 | 9216 |      1 | 3.268e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.900308434152628 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.11s (niter = 7) global walltime = 313.69s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.847019120705175, dt = 0.0023508161754508643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.5%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 329.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2456597222222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.8277849431507454e-17,-6.559426452297972e-18,4.438696870317083e-16)
    sum a = (-2.413892461272979e-16,3.279713278860642e-17,1.519628452020397e-14)
    sum e = 3.1428875363564107e-09
    sum de = 2.1760274136540158e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.60e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350802673883244 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8459e+04 | 9216 |      1 | 3.238e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.133890017631938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8493699368806258, dt = 0.002350802673883244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 303.75 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2456597222222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.771374542417042e-17,-6.4827826311544895e-18,4.792495944382253e-16)
    sum a = (-2.385687267333925e-16,3.2413914246440747e-17,1.4904575582506683e-14)
    sum e = 3.1429400677669577e-09
    sum de = 2.2908948431283724e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.60e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235078942667563 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1496e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.922065765546865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.851720739554509, dt = 0.00235078942667563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.55 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2456597222222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.715623582602549e-17,-6.407034779883898e-18,5.139442380510724e-16)
    sum a = (-2.357811789568137e-16,3.203517381516022e-17,1.4613544054364153e-14)
    sum e = 3.1429952716582016e-09
    sum de = 2.4033992160139757e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  1.61e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350776210016678 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9141e+04 | 9216 |      1 | 3.163e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.75938532942994 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8540715289811847, dt = 0.002350776210016678 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 292.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2452256944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6605243508717975e-17,-6.33217242483846e-18,5.479553328392635e-16)
    sum a = (-2.3302621841347623e-16,3.166086162314526e-17,1.4323285364944064e-14)
    sum e = 3.1430530921952978e-09
    sum de = 2.5135200479039513e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.62e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507627869894378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1500e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.92533772975896 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8564223051912014, dt = 0.0023507627869894378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 329.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.606069229386143e-17,-6.258185211574481e-18,5.812848124516836e-16)
    sum a = (-2.303034620862457e-16,3.129092651757407e-17,1.403389306621453e-14)
    sum e = 3.143113473071725e-09
    sum de = 2.621238133688212e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.64e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507489149803026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9443e+04 | 9216 |      1 | 3.130e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.03627901563553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8587730679781909, dt = 0.0023507489149803026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 339.68 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.2450086805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.552250695734102e-17,-6.185062914846039e-18,6.139348250264052e-16)
    sum a = (-2.2761253549662137e-16,3.092531426030494e-17,1.3745458818784438e-14)
    sum e = 3.143176357538202e-09
    sum de = 2.7265355342827603e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.66e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023507226449345393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8177e+04 | 9216 |      1 | 3.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.874195960767576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8611238168931712, dt = 0.0023507226449345393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.69 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 327.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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.2445746527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.499061586228147e-17,-6.112795809631208e-18,6.459075680892244e-16)
    sum a = (-2.2495307921483207e-16,3.0563979258293393e-17,1.3458073823951567e-14)
    sum e = 3.1432416881120805e-09
    sum de = 2.8293950562994436e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.66e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023506819959371386 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8602e+04 | 9216 |      1 | 3.222e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.26345225201472 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.52s (niter = 5) global walltime = 315.88s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8634745395381058, dt = 0.0023506819959371386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 325.91 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.2445746527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.446494853116595e-17,-6.041374313025888e-18,6.772054387197474e-16)
    sum a = (-2.223247425886525e-16,3.0206871496839777e-17,1.3171827488874308e-14)
    sum e = 3.143309406815916e-09
    sum de = 2.929800746577848e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.67e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350640965604798 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9790e+04 | 9216 |      1 | 3.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.35452835813863 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.865825221534043, dt = 0.002350640965604798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.46 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.244357638888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3945432075252816e-17,-5.9707885268099125e-18,7.078312389538392e-16)
    sum a = (-2.1972716002932624e-16,2.985394177090986e-17,1.2886805487200497e-14)
    sum e = 3.1433794556800844e-09
    sum de = 3.027738559165402e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.68e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350599876879816 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.989968989627428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8681758624996478, dt = 0.002350599876879816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 316.06 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.244140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.343199443190913e-17,-5.901028660545751e-18,7.377879701486442e-16)
    sum a = (-2.171599719739687e-16,2.9505143144997276e-17,1.2603091440292663e-14)
    sum e = 3.1434517764462133e-09
    sum de = 3.123195695276304e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.70e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023505590244695296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1262e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.705314282231253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8705264623765276, dt = 0.0023505590244695296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 302.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
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.244140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.292456431604383e-17,-5.832085023063623e-18,7.670788313670586e-16)
    sum a = (-2.1462282174834706e-16,2.9160425360455254e-17,1.2320766885581395e-14)
    sum e = 3.143526310582069e-09
    sum de = 3.216160601827157e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.72e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023505186685378815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1510e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.93167818926195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.872877021400997, dt = 0.0023505186685378815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 271.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.244140625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2423071227576224e-17,-5.763948038594504e-18,7.957072136767978e-16)
    sum a = (-2.121153564480317e-16,2.8819740415321865e-17,1.2039911304265583e-14)
    sum e = 3.143602999310855e-09
    sum de = 3.306622970974725e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.74e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350479029496833 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1297e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.73624841532613 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 317.36s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.875227540069535, dt = 0.002350479029496833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 325.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2439236111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.19274454523531e-17,-5.696608236251543e-18,8.236766945729836e-16)
    sum a = (-2.0963722685619723e-16,2.848304205316043e-17,1.1760602096120853e-14)
    sum e = 3.1436817836400547e-09
    sum de = 3.394573713023147e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.77e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023504402840267584 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1443e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.869948579038972 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8775780190990319, dt = 0.0023504402840267584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 266.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2439236111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1437618065191683e-17,-5.630056248035164e-18,8.509910322852049e-16)
    sum a = (-2.0718808967095073e-16,2.815028162509974e-17,1.1482914609132164e-14)
    sum e = 3.1437626043889388e-09
    sum de = 3.480004945043176e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.80e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023504025624217586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.038381008201945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8799284593830587, dt = 0.0023504025624217586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.9%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 286.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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.2439236111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.095352092367655e-17,-5.564282820696806e-18,8.776541602804904e-16)
    sum a = (-2.0476760487642783e-16,2.7821414254461696e-17,1.1206922107692805e-14)
    sum e = 3.1438454022156478e-09
    sum de = 3.5629099817525425e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.81e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023503659472978284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1551e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.967826696013457 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 318.24s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8822788619454804, dt = 0.0023503659472978284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 268.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2437065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.047508667476652e-17,-5.499278801413203e-18,9.036701816340643e-16)
    sum a = (-2.0237543303273752e-16,2.7496393641100198e-17,1.093269576512175e-14)
    sum e = 3.143930117643771e-09
    sum de = 3.643283310116987e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.82e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023503304736769244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1494e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.914589589430218 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8846292278927783, dt = 0.0023503304736769244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 269.98 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2437065972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.000224876718219e-17,-5.435035148226842e-18,9.290433635215106e-16)
    sum a = (-2.000112432636925e-16,2.7175175883621196e-17,1.066030467967457e-14)
    sum e = 3.1440166910879204e-09
    sum de = 3.721120580151846e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.84e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350296130413292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.958709284528435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8869795583664553, dt = 0.002350296130413292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 274.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2433810763888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9534941429763536e-17,-5.371542921485966e-18,9.537781318226917e-16)
    sum a = (-1.9767470765584004e-16,2.6857715039040118e-17,1.0389815880422742e-14)
    sum e = 3.1441050628791143e-09
    sum de = 3.7964185890073115e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.85e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00235026286287019 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1599e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.010314951595397 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 319.12s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8893298544968686, dt = 0.00235026286287019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 287.33 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.2433810763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9073099680661533e-17,-5.30879329461348e-18,9.778790658507386e-16)
    sum a = (-1.9536549878710321e-16,2.654396634584857e-17,1.0121294318169343e-14)
    sum e = 3.144195173289626e-09
    sum de = 3.869175265517707e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.86e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023502305767707857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1616e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.025624847118557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8916801173597388, dt = 0.0023502305767707857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 299.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2433810763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8616659335669845e-17,-5.2467775492781654e-18,1.0013508931076925e-15)
    sum a = (-1.9308329635127504e-16,2.623388759761217e-17,9.854802855727572e-15)
    sum e = 3.1442869625574843e-09
    sum de = 3.939389653900188e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.87e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023501991430549 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1402e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.828426514191477 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 319.70s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8940303479365097, dt = 0.0023501991430549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.7%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 299.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (55.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2433810763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.816555698895365e-17,-5.185487067339727e-18,1.0241984841424347e-15)
    sum a = (-1.908277846360998e-16,2.5927435979196703e-17,9.590402265932056e-15)
    sum e = 3.144380370910657e-09
    sum de = 4.0070618958484243e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.89e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023501684035777738 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1349e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.780115911509537 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8963805470795647, dt = 0.0023501684035777738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 271.53 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.2433810763888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.771973000986916e-17,-5.124913337741246e-18,1.0464268475035782e-15)
    sum a = (-1.8859865034748851e-16,2.5624566615675805e-17,9.328151278069954e-15)
    sum e = 3.1444753385909543e-09
    sum de = 4.072193214420316e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.90e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023501381774657347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1552e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.96563194970859 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 320.29s (max_walltime = 322.13s)  [SPH][rank=0]
---------------- t = 1.8987307154831425, dt = 0.001269284516858038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.7%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 320.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.2429470486111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7482964083565246e-17,-5.0927443691610245e-18,1.0579587585000776e-15)
    sum a = (-1.8741482042717626e-16,2.5463720984002315e-17,9.18852012855366e-15)
    sum e = 3.144527789039622e-09
    sum de = 4.105420205217918e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.91e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350121984359546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1524e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.630293242122022 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 320.58s (max_walltime = 322.13s)  [SPH][rank=0]
Info: iteration since start : 834                                                     [SPH][rank=0]
Info: time since start : 320.582345452 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 19):
   -> t = 1.9000000000000006 >= 1.9000000000000006
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[0. 0. 0. ... 0. 0. 0.]
(9216, 3)
[[0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 ...
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]
 [0. 0. 0. 0. 0.]]
compute original rho
all dust mass is zero, replacing by nans
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 1.9000000000000006 -> 2.0000000000000004

[Simulation] Evolve until next trigger(s) :
   -> t = 2.0 (current = 1.9000000000000006)
   -> iter = None (current = 833)
   -> walltime = 322.12876595200004 (current = 323.614502162)

Info: evolve_until (target_time = 2.00s, niter_max = -1, max_walltime = 322.13s)      [SPH][rank=0]
---------------- t = 1.9000000000000006, dt = 0.002350121984359546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.5%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 278.59 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2427300347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.704326770231637e-17,-5.0330035980132164e-18,1.0794642858298213e-15)
    sum a = (-1.852163391143234e-16,2.5165018431294337e-17,8.928585991797495e-15)
    sum e = 3.1446244846237344e-09
    sum de = 4.167550184293205e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.93e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023500921617570277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6910e+04 | 9216 |      1 | 3.425e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.704008687179076 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 323.96s > 322.13s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 10):
   -> walltime = 323.95759828300004 >= 322.12876595200004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000010.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (52.5%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000010.sham              [Shamrock Dump][rank=0]
              - took 1.38 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 323.95759828300004 -> 353.95759828300004

[Simulation] Evolve until next trigger(s) :
   -> t = 2.0 (current = 1.9023501219843602)
   -> iter = None (current = 834)
   -> walltime = 353.95759828300004 (current = 323.961509506)

Info: evolve_until (target_time = 2.00s, niter_max = -1, max_walltime = 353.96s)      [SPH][rank=0]
---------------- t = 1.9023501219843602, dt = 0.0023500921617570277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (0.9%)
   patch tree reduce : 1.27 us    (0.4%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 299.42 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2427300347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.661057558501421e-17,-4.974214479172295e-18,1.1001418473182496e-15)
    sum a = (-1.8305287806003347e-16,2.487107218703186e-17,8.672051596890769e-15)
    sum e = 3.1447231557147245e-09
    sum de = 4.2262346782300625e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.95e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002350062338125237 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.100215893551717 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.28s (niter = 25) global walltime = 324.25s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 1.9047002141461171, dt = 0.002350062338125237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2427300347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.618293207709929e-17,-4.916111309537029e-18,1.120220269436701e-15)
    sum a = (-1.8091466077167199e-16,2.458055624168776e-17,8.417851525198712e-15)
    sum e = 3.1448231642301776e-09
    sum de = 4.282396538887488e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.97e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023500323077932147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1671e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.074114592551453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9070502764842423, dt = 0.0023500323077932147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 313.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.242730034722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5760289251172847e-17,-4.858687573549931e-18,1.139703799475278e-15)
    sum a = (-1.7880144631582497e-16,2.4293438059986876e-17,8.166041798240314e-15)
    sum e = 3.1449244616566525e-09
    sum de = 4.336036289816417e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  1.99e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023500018736617796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.974241192198605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9094003087920355, dt = 0.0023500018736617796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 329.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.242296006944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5342588578435363e-17,-4.801935317002065e-18,1.1585981325046378e-15)
    sum a = (-1.7671294308702897e-16,2.4009676298959137e-17,7.916669674288255e-15)
    sum e = 3.1450269886798783e-09
    sum de = 4.387160967724781e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.76e-03 |
|       force |  2.01e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023499708534018737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1635e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.040229405211456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9117503106656972, dt = 0.0023499708534018737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 267.85 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.2420789930555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.492977230600787e-17,-4.745846697900351e-18,1.1769090630167875e-15)
    sum a = (-1.7464886185970036e-16,2.372923343150181e-17,7.66978040563312e-15)
    sum e = 3.1451306862210004e-09
    sum de = 4.4357785717278085e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.03e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349939084982524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.44601389620191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.914100281519099, dt = 0.002349939084982524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 286.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.241861979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.452178338500513e-17,-4.690413961032935e-18,1.1946424884723298e-15)
    sum a = (-1.7260891678451926e-16,2.3452070379190425e-17,7.425417188573512e-15)
    sum e = 3.145235495394763e-09
    sum de = 4.4818980831913565e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.06e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023499064313904677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9448e+04 | 9216 |      1 | 3.130e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.03169721183977 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9164502206040817, dt = 0.0023499064313904677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 263.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2416449652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.411856545455784e-17,-4.635629448165378e-18,1.211804404741337e-15)
    sum a = (-1.7059282774606394e-16,2.3178147281592943e-17,7.183621173978067e-15)
    sum e = 3.145341357533764e-09
    sum de = 4.525529465945342e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.09e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023498727844173286 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1674e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.07478951920324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9188001270354722, dt = 0.0023498727844173286 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 293.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2414279513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.372006282159621e-17,-4.581485597556511e-18,1.2284009016288712e-15)
    sum a = (-1.6860031395130918e-16,2.2907428956150484e-17,6.944431455563176e-15)
    sum e = 3.145448214212731e-09
    sum de = 4.5666836368257724e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.09e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023498380674409508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9671e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.235310633255647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9211499998198895, dt = 0.0023498380674409508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 287.74 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2414279513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.33262204627162e-17,-4.527974925771665e-18,1.24443815831417e-15)
    sum a = (-1.6663110191173677e-16,2.2639874550586485e-17,6.7078850836591695e-15)
    sum e = 3.1455560072719545e-09
    sum de = 4.605372447676872e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.08e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349802237126876 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1768e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.159875070994786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9234998378873305, dt = 0.002349802237126876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 265.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2414279513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2936983991325326e-17,-4.475090052661763e-18,1.2599224388559538e-15)
    sum a = (-1.6468491985978678e-16,2.237545068172177e-17,6.474017096084284e-15)
    sum e = 3.145664678840581e-09
    sum de = 4.641608680999697e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.08e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349765284027146 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1690e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.087649183910514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9258496401244574, dt = 0.002349765284027146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2414279513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.255229965541618e-17,-4.42282366729607e-18,1.2748600877166797e-15)
    sum a = (-1.6276149773088357e-16,2.2114118014781832e-17,6.242860542486103e-15)
    sum e = 3.14577417136006e-09
    sum de = 4.675406020230932e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.10e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023497272321227024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8091e+04 | 9216 |      1 | 3.281e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.784011765687417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9281994054084846, dt = 0.0023497272321227024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 287.67 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2412109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.217211432707257e-17,-4.371168557278228e-18,1.2892575253172864e-15)
    sum a = (-1.6086057127839883e-16,2.1855843786380298e-17,6.014446450646805e-15)
    sum e = 3.145884427606619e-09
    sum de = 4.7067790415409854e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.14e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349688137315666 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1717e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.112106313433355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9305491326406072, dt = 0.002349688137315666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 277.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.2409939236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1796375480327637e-17,-4.320117577331892e-18,1.303121243388211e-15)
    sum a = (-1.5898187752880585e-16,2.160058781383865e-17,5.78880386451979e-15)
    sum e = 3.14599539071378e-09
    sum de = 4.735743188125808e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.19e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023496480849516978 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9102e+04 | 9216 |      1 | 3.167e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.711082886312706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.932898820777923, dt = 0.0023496480849516978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 293.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2405598958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1425031188535706e-17,-4.2696636834516124e-18,1.316457800446812e-15)
    sum a = (-1.5712515646346052e-16,2.134831784164674e-17,5.565959846848363e-15)
    sum e = 3.1461070041939876e-09
    sum de = 4.762314758743901e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.23e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023496071864780163 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9648e+04 | 9216 |      1 | 3.108e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.212058912759407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9352484688628746, dt = 0.0023496071864780163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 292.71 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2403428819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.10580301122456e-17,-4.219799895340935e-18,1.3292738171950754e-15)
    sum a = (-1.5529015041918444e-16,2.1098999552438057e-17,5.3459394906606855e-15)
    sum e = 3.146219211960005e-09
    sum de = 4.7865108795151415e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.22e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023495655753723124 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.01881097774423 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9375980760493525, dt = 0.0023495655753723124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 304.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 5.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.239908854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.069532149234446e-17,-4.170519312278032e-18,1.341575971885138e-15)
    sum a = (-1.5347660750175332e-16,2.085259725903447e-17,5.1287659062899255e-15)
    sum e = 3.146331958345262e-09
    sum de = 4.808349498272135e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.23e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023495234025046837 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1517e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.926494243373217 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9399476416247248, dt = 0.0023495234025046837 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 322.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.239908854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.03368551302271e-17,-4.1218151162043215e-18,1.3533709956184056e-15)
    sum a = (-1.5168427569774212e-16,2.0609076080595862e-17,4.914460252930887e-15)
    sum e = 3.146445188124128e-09
    sum de = 4.827849354413222e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.26e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023494808310031323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1647e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.045128335428778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9422971650272294, dt = 0.0023494808310031323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.64 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 262.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.2396918402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9982581394947614e-17,-4.0736805663185576e-18,1.364665667702835e-15)
    sum a = (-1.4991290714717377e-16,2.036840272679314e-17,4.703041775773992e-15)
    sum e = 3.1465588465309393e-09
    sum de = 4.8450299685248946e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.28e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349438030910832 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1728e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.118471488349943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9446466458582325, dt = 0.002349438030910832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 299.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2396918402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.963245120774374e-17,-4.026108995092542e-18,1.3754668110821214e-15)
    sum a = (-1.4816225605221806e-16,2.0130545118767234e-17,4.494527814838744e-15)
    sum e = 3.1466728792787257e-09
    sum de = 4.859911618659993e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.25e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349395173748969 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.942609967987995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9469960838891434, dt = 0.002349395173748969 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 276.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2396918402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.928641604162157e-17,-3.979093805354152e-18,1.3857812877248811e-15)
    sum a = (-1.4643208091493768e-16,1.9895469587887464e-17,4.288933837530065e-15)
    sum e = 3.1467872325769537e-09
    sum de = 4.872515320912737e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.24e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349352427175872 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1516e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.923017324810555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9493454790628924, dt = 0.002349352427175872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 269.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.239474826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.894442790940372e-17,-3.932628478244917e-18,1.3956159940959491e-15)
    sum a = (-1.4472213932413617e-16,1.9663142590203514e-17,4.086273457203871e-15)
    sum e = 3.146901853148552e-09
    sum de = 4.882862817750423e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.24e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023493099499021118 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1606e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.005087120997672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9516948314900682, dt = 0.0023493099499021118 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 297.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 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.239474826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8606439375187667e-17,-3.886706570673858e-18,1.404977856659998e-15)
    sum a = (-1.4303219639564897e-16,1.943353369554389e-17,3.886558425765934e-15)
    sum e = 3.147016688246478e-09
    sum de = 4.890976553786674e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.27e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023492678870318823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.027942630223983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9540441414399703, dt = 0.0023492678870318823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.6%)
   LB compute        : 264.58 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.2392578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8272403529331896e-17,-3.841321705290193e-18,1.4138738273045251e-15)
    sum a = (-1.4136201849149908e-16,1.920660907169874e-17,3.689798667274455e-15)
    sum e = 3.147131685669297e-09
    sum de = 4.896879662049039e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.30e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023492263659470707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.387968245737603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9563934093270021, dt = 0.0023492263659470707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.6%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 358.00 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.2390407986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.794227399590026e-17,-3.796467586194931e-18,1.4223108789299493e-15)
    sum a = (-1.3971137086640093e-16,1.8982337884623337e-17,3.4960022982090092e-15)
    sum e = 3.1472467937763056e-09
    sum de = 4.900595945566225e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.32e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.00234918549285887 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1383e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.79939006032021 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9587426356929492, dt = 0.00234918549285887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 305.10 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 19.09 us   (5.6%)
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.238606770833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7616004942827307e-17,-3.752137985337508e-18,1.4302960010416077e-15)
    sum a = (-1.380800239414702e-16,1.876069026660749e-17,3.305175674342347e-15)
    sum e = 3.147361961501964e-09
    sum de = 4.902149862464421e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.34e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002349145350122284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.478136456505336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.961091821185808, dt = 0.002349145350122284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 271.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.6%)
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.2383897569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7293551064957844e-17,-3.708326742772165e-18,1.4378361955372435e-15)
    sum a = (-1.3646775490166246e-16,1.854163449820329e-17,3.117323414298074e-15)
    sum e = 3.147477138369838e-09
    sum de = 4.901566502575397e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023491059943820153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1675e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.066099103423248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.36s (niter = 18) global walltime = 331.70s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 1.9634409665359303, dt = 0.0023491059943820153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.6%)
   LB compute        : 260.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.2377387152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.697486757095468e-17,-3.665027774896109e-18,1.4449384725251245e-15)
    sum a = (-1.3487433766759438e-16,1.8325138289830028e-17,2.932448455348155e-15)
    sum e = 3.1475922745057838e-09
    sum de = 4.8988715651045974e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.38e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023490674555882206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.069e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.552154264248447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9657900725303123, dt = 0.0023490674555882206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 259.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.2375217013888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6659910206792823e-17,-3.622235075192228e-18,1.4516098463197647e-15)
    sum a = (-1.3329955047667213e-16,1.8111175771630314e-17,2.7505520848163032e-15)
    sum e = 3.147707320650533e-09
    sum de = 4.894091347804646e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.39e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023490297368956407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1685e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.074648591688046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9681391399859005, dt = 0.0023490297368956407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 286.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2375217013888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6348635239392662e-17,-3.579942690857027e-18,1.4578573315372908e-15)
    sum a = (-1.31743176146642e-16,1.7899713426642693e-17,2.5716339625572725e-15)
    sum e = 3.147822228172155e-09
    sum de = 4.8872527248238634e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348992815431725 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1744e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.12779182177126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.970488169722796, dt = 0.002348992815431725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 265.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.2375217013888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6040999450018548e-17,-3.5381447583368205e-18,1.4636879392453864e-15)
    sum a = (-1.3020499709913213e-16,1.7690724134319665e-17,2.3956921666603724e-15)
    sum e = 3.147936949077878e-09
    sum de = 4.878383125492909e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.35e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348956643883552 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.00477248557999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9728371625382277, dt = 0.002348956643883552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 271.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.2373046875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5736960142788716e-17,-3.496835471543659e-18,1.4691086732683018e-15)
    sum a = (-1.286848007173172e-16,1.7484177962269347e-17,2.2227232048049945e-15)
    sum e = 3.148051436025547e-09
    sum de = 4.867510516220273e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.36e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023489211528364686 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1710e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.09563749540095 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9751861191821112, dt = 0.0023489211528364686 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 307.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.2370876736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5436475129901195e-17,-3.4560091000063354e-18,1.4741265265275676e-15)
    sum a = (-1.2718237669953255e-16,1.7280045642626494e-17,2.0527220571903764e-15)
    sum e = 3.148165642334785e-09
    sum de = 4.854663384578286e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023488862537810037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9175e+04 | 9216 |      1 | 3.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.76904420297778 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9775350403349476, dt = 0.0023488862537810037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 320.31 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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.2370876736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5139502731409346e-17,-3.4156599837582693e-18,1.4787484775058745e-15)
    sum a = (-1.2569751422723233e-16,1.7078300713230415e-17,1.885682187315228e-15)
    sum e = 3.148279521998027e-09
    sum de = 4.8398707204932736e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.30e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023488518426725918 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.990e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.28451786211156 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.9798839265887287, dt = 0.0023488518426725918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 308.98 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.236762152777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.484600177999176e-17,-3.375782523588591e-18,1.4829814867579955e-15)
    sum a = (-1.2423000878912715e-16,1.6878912473247614e-17,1.7215956038162399e-15)
    sum e = 3.1483930296912306e-09
    sum de = 4.8231619912394176e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.28e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348817803913217 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1552e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.949646187261465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9822327784314013, dt = 0.002348817803913217 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 268.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2365451388888897
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.455593159991071e-17,-3.336371200170252e-18,1.4868324936247306e-15)
    sum a = (-1.2277965830438513e-16,1.6681856111869962e-17,1.5604528754233168e-15)
    sum e = 3.148506120784221e-09
    sum de = 4.804567128845299e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.28e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348784014621184 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0450e+04 | 9216 |      1 | 3.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.938310021036237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9845815962353146, dt = 0.002348784014621184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 293.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
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.2363281250000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4269252005816074e-17,-3.297420547909623e-18,1.4903084129382592e-15)
    sum a = (-1.2134625851508287e-16,1.648710235678799e-17,1.4022431701118245e-15)
    sum e = 3.1486187513510827e-09
    sum de = 4.784116512544792e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.29e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023487503490470605 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1630e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.020695073853954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9869303802499358, dt = 0.0023487503490470605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2363281250000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.398592331191219e-17,-3.2589251778113143e-18,1.493416131860592e-15)
    sum a = (-1.1992961651975659e-16,1.6294626229986624e-17,1.2469543172949621e-15)
    sum e = 3.1487308781803527e-09
    sum de = 4.7618409453156506e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.32e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023487166829981305 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.049e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.727586082818522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.989279130598983, dt = 0.0023487166829981305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 287.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.236111111111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3705906290068345e-17,-3.2208797564575073e-18,1.496162506896169e-15)
    sum a = (-1.1852953116472846e-16,1.6104399156315458e-17,1.0945728165430076e-15)
    sum e = 3.1488424587848426e-09
    sum de = 4.737771643452455e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023486828981218507 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1702e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.085400048937192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.991627847281981, dt = 0.0023486828981218507 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 289.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2356770833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3429162209124707e-17,-3.183279024277802e-18,1.4985543608641098e-15)
    sum a = (-1.1714581272688961e-16,1.5916394414377604e-17,9.450838791350876e-16)
    sum e = 3.1489534514115728e-09
    sum de = 4.711940214879097e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.33e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023486488859184715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8217e+04 | 9216 |      1 | 3.266e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.88789951730681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.993976530180103, dt = 0.0023486488859184715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 286.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2352430555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3155652784555613e-17,-3.1461177840023725e-18,1.5005984800090518e-15)
    sum a = (-1.1577826330156694e-16,1.5730588754394883e-17,7.984714659051097e-16)
    sum e = 3.149063815051307e-09
    sum de = 4.6843786434066e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.29e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.002348614551359463 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.016089261576486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9963251790660215, dt = 0.002348614551359463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2352430555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.288534021739147e-17,-3.1093908906005713e-18,1.5023016111714926e-15)
    sum a = (-1.1442670224043567e-16,1.554695379364666e-17,6.54718314122162e-16)
    sum e = 3.1491735094479276e-09
    sum de = 4.65511927263892e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.26e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023485798160050673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1752e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.129798968933642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.9986737936173808, dt = 0.001326206382619155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 263.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2348090277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2735173942582885e-17,-3.0889880652008707e-18,1.5030010924086574e-15)
    sum a = (-1.1367586965681968e-16,1.5444940736734818e-17,5.753712801857661e-16)
    sum e = 3.1492349015181376e-09
    sum de = 4.637289947505157e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+===========+
|     key     |   value   |
+=============+===========+
|     courant |  5.75e-03 |
|       force |  2.25e-01 |
| dust1_fluid |  2.35e-03 |
|  dust_drift | 1.80e+308 |
+-------------+-----------+
Info: cfl dt = 0.0023485599982370257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0625e+04 | 9216 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.865138654404436 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 877                                                     [SPH][rank=0]
Info: time since start : 336.481116272 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "inject_dust" (counter = 0):
   -> t = 2.0 >= 2.0
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
max_v = 0.008055374195431602
epsilon_target = [1.47411930e-07 9.67753750e-05 1.39697954e-06 ... 6.49032014e-04
 6.09243382e-04 5.57309132e-07] 0
s = [2.85919534e-07 1.07165716e-05 1.00537300e-06 ... 4.13042029e-05
 3.36663016e-05 6.01837534e-07] False epsilon_target = [1.47411930e-07 9.67753750e-05 1.39697954e-06 ... 6.49032014e-04
 6.09243382e-04 5.57309132e-07] mrn_weight = 0.06498813249567935 mask = [2.26828999e-04 1.48912380e-01 2.14959175e-03 ... 9.98693130e-01
 9.37468672e-01 8.57555234e-04], rho = [5.54568275e-07 1.18671621e-06 7.23543069e-07 ... 2.62858709e-06
 1.86037288e-06 6.49923707e-07]
epsilon_target = [2.33632165e-07 1.53378633e-04 2.21406336e-06 ... 1.02864642e-03
 9.65585689e-04 8.83275449e-07] 1
s = [3.59951367e-07 1.34913643e-05 1.26568961e-06 ... 5.19989106e-05
 4.23833626e-05 7.57668565e-07] False epsilon_target = [2.33632165e-07 1.53378633e-04 2.21406336e-06 ... 1.02864642e-03
 9.65585689e-04 8.83275449e-07] mrn_weight = 0.10299924878316286 mask = [2.26828999e-04 1.48912380e-01 2.14959175e-03 ... 9.98693130e-01
 9.37468672e-01 8.57555234e-04], rho = [5.54568275e-07 1.18671621e-06 7.23543069e-07 ... 2.62858709e-06
 1.86037288e-06 6.49923707e-07]
epsilon_target = [3.70282027e-07 2.43088751e-04 3.50905394e-06 ... 1.63029471e-03
 1.53035019e-03 1.39989725e-06] 2
s = [4.53151923e-07 1.69846214e-05 1.59340882e-06 ... 6.54627500e-05
 5.33574922e-05 9.53848210e-07] False epsilon_target = [3.70282027e-07 2.43088751e-04 3.50905394e-06 ... 1.63029471e-03
 1.53035019e-03 1.39989725e-06] mrn_weight = 0.16324280822504375 mask = [2.26828999e-04 1.48912380e-01 2.14959175e-03 ... 9.98693130e-01
 9.37468672e-01 8.57555234e-04], rho = [5.54568275e-07 1.18671621e-06 7.23543069e-07 ... 2.62858709e-06
 1.86037288e-06 6.49923707e-07]
epsilon_target = [5.86857464e-07 3.85269707e-04 5.56147571e-06 ... 2.58384299e-03
 2.42544159e-03 2.21868762e-06] 3
s = [5.70484471e-07 2.13823714e-05 2.00598285e-06 ... 8.24127195e-05
 6.71731029e-05 1.20082375e-06] False epsilon_target = [5.86857464e-07 3.85269707e-04 5.56147571e-06 ... 2.58384299e-03
 2.42544159e-03 2.21868762e-06] mrn_weight = 0.2587224154741067 mask = [2.26828999e-04 1.48912380e-01 2.14959175e-03 ... 9.98693130e-01
 9.37468672e-01 8.57555234e-04], rho = [5.54568275e-07 1.18671621e-06 7.23543069e-07 ... 2.62858709e-06
 1.86037288e-06 6.49923707e-07]
epsilon_target = [9.30106400e-07 6.10611336e-04 8.81434499e-06 ... 4.09511516e-03
 3.84406587e-03 3.51638290e-06] 4
s = [7.18197397e-07 2.69188108e-05 2.52538279e-06 ... 1.03751467e-04
 8.45659262e-05 1.51174753e-06] False epsilon_target = [9.30106400e-07 6.10611336e-04 8.81434499e-06 ... 4.09511516e-03
 3.84406587e-03 3.51638290e-06] mrn_weight = 0.4100473950220074 mask = [2.26828999e-04 1.48912380e-01 2.14959175e-03 ... 9.98693130e-01
 9.37468672e-01 8.57555234e-04], rho = [5.54568275e-07 1.18671621e-06 7.23543069e-07 ... 2.62858709e-06
 1.86037288e-06 6.49923707e-07]
--------------------------------
[Simulation] Advancing callback "inject_dust"

[Simulation] Evolve until next trigger(s) :
   -> t = 2.0000000000000004 (current = 2.0)
   -> iter = None (current = 876)
   -> walltime = 353.95759828300004 (current = 336.50623329)

Info: evolve_until (target_time = 2.00s, niter_max = -1, max_walltime = 353.96s)      [SPH][rank=0]
---------------- t = 2, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.53 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 322.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2345920138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2735671822021063e-17,-3.0890557103186267e-18,1.502948477136314e-15)
    sum a = (-1.136783592583569e-16,1.544527875871669e-17,5.756343548867452e-16)
    sum e = 3.149234782874249e-09
    sum de = 4.6370274678707735e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.23e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006762846984634 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2734e+04 | 9216 |      1 | 2.815e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]
Info: next walltime check in 4.23s (niter = 15) global walltime = 336.79s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2, dt = 4.440892098500626e-16 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.6%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 317.13 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2345920138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2735671821960546e-17,-3.0890557102702123e-18,1.5029484771346943e-15)
    sum a = (-1.1367835899685734e-16,1.544527823222291e-17,5.756343553813823e-16)
    sum e = 3.149234782874249e-09
    sum de = 4.6370274678708084e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.23e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006762846984634 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2839e+04 | 9216 |      1 | 2.806e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.696582642098595e-12 (tsim/hr)                         [sph::Model][rank=0]
Info: iteration since start : 879                                                     [SPH][rank=0]
Info: time since start : 337.069374652 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 20):
   -> t = 2.0000000000000004 >= 2.0000000000000004
--------------------------------
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
vK = 29785.145516217024
OmegaK = 1.9910140015259603e-07
tK = 5022566.3869444225
tfinal = 2.7883747556299937e-15
0.0
tfinal = 2.7883747556299937e-15
0.0
tfinal = 2.7883747556299937e-15
0.0
tfinal = 2.7883747556299937e-15
0.0
tfinal = 2.7883747556299937e-15
0.0
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[2.85919534e-07 3.59951367e-07 4.53151923e-07 ... 9.53848210e-07
 1.20082375e-06 1.51174753e-06]
(9216, 3)
[[2.85919534e-07 3.59951367e-07 4.53151923e-07 5.70484471e-07
  7.18197397e-07]
 [1.07165716e-05 1.34913643e-05 1.69846214e-05 2.13823714e-05
  2.69188108e-05]
 [1.00537300e-06 1.26568961e-06 1.59340882e-06 2.00598285e-06
  2.52538279e-06]
 ...
 [4.13042029e-05 5.19989106e-05 6.54627500e-05 8.24127195e-05
  1.03751467e-04]
 [3.36663016e-05 4.23833626e-05 5.33574922e-05 6.71731029e-05
  8.45659262e-05]
 [6.01837534e-07 7.57668565e-07 9.53848210e-07 1.20082375e-06
  1.51174753e-06]]
compute original rho
0.0006564642400159865 0.0
0.0010404548862953185 0.0
0.0016490855914940905 0.0
0.0026138063493944394 0.0
0.0041428686178866135 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.0000000000000004 -> 2.1000000000000005

[Simulation] Evolve until next trigger(s) :
   -> t = 2.1000000000000005 (current = 2.0000000000000004)
   -> iter = None (current = 878)
   -> walltime = 353.95759828300004 (current = 340.401132732)

Info: evolve_until (target_time = 2.10s, niter_max = -1, max_walltime = 353.96s)      [SPH][rank=0]
---------------- t = 2.0000000000000004, dt = 0.0023006762846984634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.4%)
   patch tree reduce : 1.93 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 457.57 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.2345920138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2474134717412524e-17,-3.0535211248995206e-18,1.5042728254445146e-15)
    sum a = (-1.1237067315236481e-16,1.526760608879424e-17,4.3834822000648783e-16)
    sum e = 3.14934148868774e-09
    sum de = 4.796221874050392e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.25e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006710412613587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4292e+04 | 9216 |      1 | 3.794e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.831702336332874 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.04s (niter = 8) global walltime = 340.78s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.002300676284699, dt = 0.0023006710412613587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.5%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 373.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2345920138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2217111044809032e-17,-3.0185997688062664e-18,1.5051233950221765e-15)
    sum a = (-1.110855550430775e-16,1.5092999063683222e-17,3.046294518177322e-16)
    sum e = 3.1494536639858338e-09
    sum de = 4.949667984796852e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002300665930088091 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1269e+04 | 9216 |      1 | 2.947e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.10160911176077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.00460134732596, dt = 0.002300665930088091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 292.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.196301860986406e-17,-2.9840766767789426e-18,1.5056704241768753e-15)
    sum a = (-1.0981509365918484e-16,1.4920383780063436e-17,1.736377032023869e-16)
    sum e = 3.1495693033551625e-09
    sum de = 5.099262727930568e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.33e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002300662432209929 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1348e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.172010014431418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.006902013256048, dt = 0.002300662432209929 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 297.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2341579861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1711832603054677e-17,-2.9499484752886943e-18,1.5059192217910852e-15)
    sum a = (-1.085591625890294e-16,1.474974186628736e-17,4.535603229844607e-17)
    sum e = 3.1496883398768714e-09
    sum de = 5.2449788674778663e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.38e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006619790006417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1615e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.412507292007206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.009202675688258, dt = 0.0023006619790006417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 314.96 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2341579861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.14635194020498e-17,-2.9162105997279314e-18,1.5058760042781596e-15)
    sum a = (-1.0731759680861058e-16,1.4581052686212502e-17,-8.023825696391278e-17)
    sum e = 3.1498106841641778e-09
    sum de = 5.386802367212934e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006659198711236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1604e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.401969271692074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0115033376672584, dt = 0.0023006659198711236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 330.20 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.233723958333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.121804567603597e-17,-2.882858517177413e-18,1.505546927851217e-15)
    sum a = (-1.0609022929307364e-16,1.4414292391050874e-17,-2.0316879943062357e-16)
    sum e = 3.149936246745933e-09
    sum de = 5.524721181389566e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.51e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002300675513891692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8403e+04 | 9216 |      1 | 3.245e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.525369268025575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0138040035871296, dt = 0.002300675513891692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.5%)
   LB compute        : 325.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
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.233506944444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0975378364481017e-17,-2.8498877374711454e-18,1.504938091314701e-15)
    sum a = (-1.048768921155413e-16,1.424943837202701e-17,-3.234601376337067e-16)
    sum e = 3.150064937985893e-09
    sum de = 5.658725215119009e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.59e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023006918883659005 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1615e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.412723527119688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0161046791010215, dt = 0.0023006918883659005 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.9%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 294.33 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2332899305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0735484697172136e-17,-2.8172938081117668e-18,1.5040555335322521e-15)
    sum a = (-1.036774227423723e-16,1.408646932287661e-17,-4.4113772281885222e-16)
    sum e = 3.150196668124932e-09
    sum de = 5.7888062588310645e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.68e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023007160377445306 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1423e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.239914902709923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.018405370989387, dt = 0.0023007160377445306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 325.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2330729166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0498332192693018e-17,-2.785072312824714e-18,1.5029052309652818e-15)
    sum a = (-1.0249166001596928e-16,1.392536215963653e-17,-5.562278812424941e-16)
    sum e = 3.1503313473199777e-09
    sum de = 5.914957934628892e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.78e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002300748737163645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8345e+04 | 9216 |      1 | 3.251e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.474422521576894 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.48s (niter = 8) global walltime = 343.19s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.020706087027132, dt = 0.002300748737163645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.53 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 321.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2330729166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0263888686996093e-17,-2.753218884375948e-18,1.501493095484078e-15)
    sum a = (-1.0131944322320583e-16,1.3766093913812054e-17,-6.687576443434077e-16)
    sum e = 3.150468885675532e-09
    sum de = 6.037175606842258e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 4.90e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002300790566354669 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1683e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4744107438879 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.0230068357642956, dt = 0.002300790566354669 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.6%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 327.80 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2330729166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.003212235588882e-17,-2.721729203505732e-18,1.4998249728508657e-15)
    sum a = (-1.0016061229203304e-16,1.3608646209272929e-17,-7.787547194216598e-16)
    sum e = 3.150609193272358e-09
    sum de = 6.155456337905937e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.03e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008418959612987 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9388e+04 | 9216 |      1 | 3.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.412512914491423 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.02530762633065, dt = 0.0023008418959612987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 340.89 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
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.232096354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9803001736470276e-17,-2.690598987386192e-18,1.4979066412477964e-15)
    sum a = (-9.901500861276444e-17,1.3452994667704889e-17,-8.862475020834077e-16)
    sum e = 3.1507521801934944e-09
    sum de = 6.269798807592891e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.18e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009028774551785 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1695e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.486762548405476 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0276084682266116, dt = 0.0023009028774551785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 287.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2318793402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9576495744766127e-17,-2.659824017910753e-18,1.4957438098705012e-15)
    sum a = (-9.788247919754497e-17,1.3299119941088698e-17,-9.912650265079007e-16)
    sum e = 3.1508977565459695e-09
    sum de = 6.380203250197788e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.34e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009734549383396 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1661e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.456867540778013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0299093711040666, dt = 0.0023009734549383396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 280.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2316623263888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9352573678490435e-17,-2.6294001214260924e-18,1.4933421177941707e-15)
    sum a = (-9.676286972989545e-17,1.3147000482782387e-17,-1.0938368698963285e-15)
    sum e = 3.1510458324807213e-09
    sum de = 6.486671425141186e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301053365370503 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1620e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.420210880624037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.032210344559005, dt = 0.002301053365370503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 304.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
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.2312282986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9131205247227674e-17,-2.599323183101327e-18,1.4907071332420225e-15)
    sum a = (-9.565602667265942e-17,1.2996615698363492e-17,-1.1939931760622909e-15)
    sum e = 3.151196318211184e-09
    sum de = 6.58920656272195e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301142150774852 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0958e+04 | 9216 |      1 | 2.977e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.82623325233339 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0345113979243754, dt = 0.002301142150774852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 317.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2310112847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8912360584863123e-17,-2.5695891446393296e-18,1.4878443527099677e-15)
    sum a = (-9.456180265393309e-17,1.28479458095625e-17,-1.2917645631312803e-15)
    sum e = 3.15134912403021e-09
    sum de = 6.687813313223852e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.76e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301239177606188 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1524e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33625596728383 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0368125400751502, dt = 0.002301239177606188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 282.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.2302517361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8696010242183165e-17,-2.540194003578021e-18,1.4847592005635214e-15)
    sum a = (-9.348005038289364e-17,1.2700970278619447e-17,-1.387182125297825e-15)
    sum e = 3.151504160326356e-09
    sum de = 6.782497702265968e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.82e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301343659060288 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0948e+04 | 9216 |      1 | 2.978e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.819377982789053 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.82s (niter = 6) global walltime = 345.56s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0391137792527565, dt = 0.002301343659060288 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 264.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 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.229600694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8482125206550255e-17,-2.5111338192035333e-18,1.4814570284590827e-15)
    sum a = (-9.241062563064079e-17,1.2555669131036708e-17,-1.4802773772238882e-15)
    sum e = 3.1516613376001758e-09
    sum de = 6.873267113249647e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.86e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023014546832948422 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1320e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.155369147056295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.041415122911817, dt = 0.0023014546832948422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 314.91 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.229600694444445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8270676896311053e-17,-2.48240470960463e-18,1.477943115069293e-15)
    sum a = (-9.135338407469356e-17,1.2412024172176549e-17,-1.5710822932374474e-15)
    sum e = 3.151820566481988e-09
    sum de = 6.960130256079638e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.89e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015712401839193 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1561e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37382617433283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0437165775951116, dt = 0.0023015712401839193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.67 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.229383680555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8061637171555425e-17,-2.4540028478226607e-18,1.474222665549879e-15)
    sum a = (-9.030818616581177e-17,1.2270014832475121e-17,-1.6596292459496099e-15)
    sum e = 3.151981757750468e-09
    sum de = 7.043097142011787e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.93e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016922536538754 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1705e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.504734032983187 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0460181488352953, dt = 0.0023016922536538754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 298.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.2291666666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7854978317807386e-17,-2.4259244720890114e-18,1.4703008112124057e-15)
    sum a = (-8.927489155462306e-17,1.2129622102770228e-17,-1.7459509268839538e-15)
    sum e = 3.1521448223530085e-09
    sum de = 7.122179089830952e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 5.98e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023018166131211952 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.760169370269395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0483198410889494, dt = 0.0023018166131211952 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 293.66 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2291666666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7650673052383896e-17,-2.398165876866234e-18,1.466182609390617e-15)
    sum a = (-8.825336531722636e-17,1.1990829486573655e-17,-1.8300803804126858e-15)
    sum e = 3.1523096714290288e-09
    sum de = 7.197388699997411e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.01e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023019432051580857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1561e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.377608973215068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0506216577020706, dt = 0.0023019432051580857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2291666666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7448694500737803e-17,-2.3707234059533912e-18,1.4618730430079113e-15)
    sum a = (-8.724347246889444e-17,1.185361620904875e-17,-1.9120509477787115e-15)
    sum e = 3.152476216334903e-09
    sum de = 7.268739848748813e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.06e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002302070943301575 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1702e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.506549523693234 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.51s (niter = 5) global walltime = 347.33s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0529236009072287, dt = 0.002302070943301575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 281.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2289496527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7249016195832867e-17,-2.3435934690371907e-18,1.4573770202819947e-15)
    sum a = (-8.62450807697609e-17,1.1717966759328372e-17,-1.9918961937361093e-15)
    sum e = 3.152644368671606e-09
    sum de = 7.336247697523837e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.12e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002302024811996991 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.477758673063352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0552256718505304, dt = 0.002302024811996991 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 280.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2289496527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7051627064213808e-17,-2.3167745561176084e-18,1.4526997211097087e-15)
    sum a = (-8.525813512006991e-17,1.1583872492909466e-17,-2.069644082680738e-15)
    sum e = 3.1528140275506884e-09
    sum de = 7.399923728408007e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.20e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301926996357074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9643e+04 | 9216 |      1 | 3.109e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.655502441507213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0575276966625275, dt = 0.002301926996357074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 290.26 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2287326388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.685650504806364e-17,-2.290263671549259e-18,1.4478460627374357e-15)
    sum a = (-8.42825251957351e-17,1.1451318109492475e-17,-2.1453275285031492e-15)
    sum e = 3.152985100946123e-09
    sum de = 7.459785438104557e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301837615570749 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8340e+04 | 9216 |      1 | 3.252e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.483086385385437 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0598296236588847, dt = 0.002301837615570749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 280.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2287326388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.666362325256937e-17,-2.2640571619843558e-18,1.4428207582508066e-15)
    sum a = (-8.331811674224219e-17,1.1320285874420811e-17,-2.2189816930250663e-15)
    sum e = 3.153157501747386e-09
    sum de = 7.515853246639405e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.42e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301757593431386 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1584e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39908412337462 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.0621314612744555, dt = 0.002301757593431386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 263.55 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.2287326388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6472955100459483e-17,-2.2381514154078354e-18,1.4376284303279904e-15)
    sum a = (-8.23647762300346e-17,1.1190756984808579e-17,-2.2906418950067583e-15)
    sum e = 3.1533311434622104e-09
    sum de = 7.56814872136799e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.57e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301687803188147 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34202659023857 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 4) global walltime = 348.84s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0644332188678867, dt = 0.002301687803188147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 327.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.228298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.628447427899014e-17,-2.2125428586880286e-18,1.432273615612698e-15)
    sum a = (-8.142237152185814e-17,1.1062714628228165e-17,-2.3603435281212234e-15)
    sum e = 3.1535059401990134e-09
    sum de = 7.616694615919368e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.72e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016290256259644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1554e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37032891532572 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.066734906671075, dt = 0.0023016290256259644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 270.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.228081597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.609815474611141e-17,-2.187227950405821e-18,1.4267607647358714e-15)
    sum a = (-8.049077367346102e-17,1.0936140401908175e-17,-2.4281221040952177e-15)
    sum e = 3.1536818066870567e-09
    sum de = 7.661514879962305e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.83e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015819167496953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0587e+04 | 9216 |      1 | 3.013e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.49984414426983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.069036535696701, dt = 0.0023015819167496953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.2278645833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5913970733275303e-17,-2.1622031908203254e-18,1.4210942422383615e-15)
    sum a = (-7.956985401658893e-17,1.0811015325686658e-17,-2.494013211971556e-15)
    sum e = 3.1538586582935776e-09
    sum de = 7.702634625117567e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.97e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301546995466897 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8888e+04 | 9216 |      1 | 3.190e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.972112310241208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0713381176134504, dt = 0.002301546995466897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 266.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5731896760846985e-17,-2.1374651237482417e-18,1.4152783267365579e-15)
    sum a = (-7.865948470999418e-17,1.0687325570270656e-17,-2.55805245510936e-15)
    sum e = 3.154036411038038e-09
    sum de = 7.740080099093942e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.12e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015246216223674 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1734e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.529901041343983 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.90s (niter = 3) global walltime = 350.05s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0736396646089172, dt = 0.0023015246216223674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.1%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 261.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5551907648989198e-17,-2.1130103197673487e-18,1.4093172113684361e-15)
    sum a = (-7.775953826866247e-17,1.0565051618186014e-17,-2.6202754280792098e-15)
    sum e = 3.1542149816037434e-09
    sum de = 7.773878671708473e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301514981357692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.037950587633922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.0759411892305395, dt = 0.002301514981357692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 295.11 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.537397853119632e-17,-2.088835403460628e-18,1.4032150043586153e-15)
    sum a = (-7.686989223879e-17,1.0444177626072853e-17,-2.680717695497694e-15)
    sum e = 3.154394287347718e-09
    sum de = 7.804058810756287e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.38e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.50e-02 |
+-------------+----------+
Info: cfl dt = 0.002301518078122446 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1445e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.269528560682804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.078242704211897, dt = 0.002301518078122446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 266.11 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.2274305555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.519808485112759e-17,-2.0649370364481038e-18,1.3969757297249625e-15)
    sum a = (-7.599042464392172e-17,1.0324685018201409e-17,-2.7394147662586725e-15)
    sum e = 3.15457424630878e-09
    sum de = 7.830650035643243e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301533727152396 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.071e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.98097689745152 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 350.94s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0805442222900195, dt = 0.002301533727152396 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 290.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.2274305555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.502420238130392e-17,-2.0413119328189448e-18,1.3906033280609706e-15)
    sum a = (-7.512101187218055e-17,1.0206560173297949e-17,-2.7964021626340246e-15)
    sum e = 3.1547547772136544e-09
    sum de = 7.853682909446417e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301561556886045 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1556e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.369819879616767 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.082845756017172, dt = 0.002301561556886045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.7%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4852307239738222e-17,-2.017956840496307e-18,1.384101657143772e-15)
    sum a = (-7.426153625016886e-17,1.0089784424063403e-17,-2.851715257816914e-15)
    sum e = 3.154935799483214e-09
    sum de = 7.873189019023623e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.47e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016010148988572 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8935e+04 | 9216 |      1 | 3.185e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.01360385486144 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 351.56s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.085147317574058, dt = 0.0023016010148988572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.0%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.468237588049681e-17,-1.9948685655974987e-18,1.3774744931642533e-15)
    sum a = (-7.341187912479206e-17,9.97434290960763e-18,-2.9053892460415968e-15)
    sum e = 3.1551172332385896e-09
    sum de = 7.889200931242101e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016513740796245 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1363e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.197496493992162 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 351.85s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0874489185889566, dt = 0.0023016513740796245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 274.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.451438511390362e-17,-1.9720439558300282e-18,1.370725531961254e-15)
    sum a = (-7.257192510304282e-17,9.860218753917257e-18,-2.9574591959533825e-15)
    sum e = 3.155298999306508e-09
    sum de = 7.901752196230045e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.40e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301711747458903 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0786e+04 | 9216 |      1 | 2.994e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.679563380102714 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 352.15s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.0897505699630363, dt = 0.002301711747458903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 300.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.434831210200906e-17,-1.9494799114310664e-18,1.3638583899535177e-15)
    sum a = (-7.174156046154284e-17,9.747399386580273e-18,-3.0079599248243393e-15)
    sum e = 3.1554810192265414e-09
    sum de = 7.91087732301733e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.39e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023017542847716 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.340780626047383 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 352.44s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.092052281710495, dt = 0.0023017542847716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.8%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.97 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2269965277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.418413628784804e-17,-1.927173631985337e-18,1.3568766862464889e-15)
    sum a = (-7.092068205629539e-17,9.635868166331696e-18,-3.056925496293986e-15)
    sum e = 3.155663213137291e-09
    sum de = 7.916611666072177e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.35e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301767434318004 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1641e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.449206099874168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 352.73s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.094354035995267, dt = 0.002301767434318004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 336.57 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.402183810155318e-17,-1.9051224631934317e-18,1.3497840013291329e-15)
    sum a = (-7.010919006835428e-17,9.525612850402006e-18,-3.1043896159916684e-15)
    sum e = 3.1558455010758222e-09
    sum de = 7.918991673756811e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.24e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023017970573475494 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7188e+04 | 9216 |      1 | 3.390e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.4458065079783 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 353.07s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.096655803429585, dt = 0.0023017970573475494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 294.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3861394907173118e-17,-1.883323326665293e-18,1.342583700765673e-15)
    sum a = (-6.930697465906272e-17,9.416616419532721e-18,-3.150386757521611e-15)
    sum e = 3.1560278075568773e-09
    sum de = 7.918054945614236e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.14e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230184178398246 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1643e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.451155232243163 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 353.37s (max_walltime = 353.96s)  [SPH][rank=0]
---------------- t = 2.098957600486932, dt = 0.0010423995130683927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 286.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3790072618952899e-17,-1.8736328940813375e-18,1.339246801102558e-15)
    sum a = (-6.895036286232899e-17,9.36816431345149e-18,-3.1705361718660808e-15)
    sum e = 3.1561103328191107e-09
    sum de = 7.915245622484022e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.10e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301871802794784 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8761e+04 | 9216 |      1 | 3.204e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.711306714305936 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 353.69s (max_walltime = 353.96s)  [SPH][rank=0]
Info: iteration since start : 923                                                     [SPH][rank=0]
Info: time since start : 353.686323742 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 21):
   -> t = 2.1000000000000005 >= 2.1000000000000005
--------------------------------
tfinal = 0.6278861755212303
0.025
0.05
0.07500000000000001
0.1
0.125
0.15
0.175
0.19999999999999998
0.22499999999999998
0.24999999999999997
0.27499999999999997
0.3
0.325
0.35000000000000003
0.37500000000000006
0.4000000000000001
0.4250000000000001
0.4500000000000001
0.47500000000000014
0.5000000000000001
0.5250000000000001
0.5500000000000002
0.5750000000000002
0.6000000000000002
0.6250000000000002
tfinal = 0.6278861755212303
0.025
0.05
0.07500000000000001
0.1
0.125
0.15
0.175
0.19999999999999998
0.22499999999999998
0.24999999999999997
0.27499999999999997
0.3
0.325
0.35000000000000003
0.37500000000000006
0.4000000000000001
0.4250000000000001
0.4500000000000001
0.47500000000000014
0.5000000000000001
0.5250000000000001
0.5500000000000002
0.5750000000000002
0.6000000000000002
0.6250000000000002
tfinal = 0.6278861755212303
0.025
0.05
0.07500000000000001
0.1
0.125
0.15
0.175
0.19999999999999998
0.22499999999999998
0.24999999999999997
0.27499999999999997
0.3
0.325
0.35000000000000003
0.37500000000000006
0.4000000000000001
0.4250000000000001
0.4500000000000001
0.47500000000000014
0.5000000000000001
0.5250000000000001
0.5500000000000002
0.5750000000000002
0.6000000000000002
0.6250000000000002
tfinal = 0.6278861755212303
0.025
0.05
0.07500000000000001
0.1
0.125
0.15
0.175
0.19999999999999998
0.22499999999999998
0.24999999999999997
0.27499999999999997
0.3
0.325
0.35000000000000003
0.37500000000000006
0.4000000000000001
0.4250000000000001
0.4500000000000001
0.47500000000000014
0.5000000000000001
0.5250000000000001
0.5500000000000002
0.5750000000000002
0.6000000000000002
0.6250000000000002
tfinal = 0.6278861755212303
0.025
0.05
0.07500000000000001
0.1
0.125
0.15
0.175
0.19999999999999998
0.22499999999999998
0.24999999999999997
0.27499999999999997
0.3
0.325
0.35000000000000003
0.37500000000000006
0.4000000000000001
0.4250000000000001
0.4500000000000001
0.47500000000000014
0.5000000000000001
0.5250000000000001
0.5500000000000002
0.5750000000000002
0.6000000000000002
0.6250000000000002
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.85428550e-07 4.92150649e-08 1.10985805e-11 ... 1.17770980e-11
 7.22628716e-11 2.76028724e-10]
(9216, 3)
[[1.85428550e-07 4.92150649e-08 1.10985805e-11 6.62913940e-11
  1.89141273e-10]
 [1.04611269e-05 1.26850174e-05 1.44256930e-05 1.33195066e-05
  2.73238022e-06]
 [8.40205741e-07 7.46001360e-07 4.13394244e-09 7.52770026e-11
  4.29013611e-10]
 ...
 [4.14774724e-05 5.22566946e-05 6.59007189e-05 8.32203234e-05
  1.04630673e-04]
 [3.36822505e-05 4.21879006e-05 5.23925684e-05 6.34004614e-05
  6.97223838e-05]
 [4.63575082e-07 3.28897277e-07 1.17770980e-11 7.22628716e-11
  2.76028724e-10]]
compute original rho
0.0006571796958790308 0.0
0.0010434924459212065 0.0
0.0016616748868600831 0.0
0.002662333781196386 0.0
0.004298021195623532 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.1000000000000005 -> 2.2000000000000006

[Simulation] Evolve until next trigger(s) :
   -> t = 2.2000000000000006 (current = 2.1000000000000005)
   -> iter = None (current = 922)
   -> walltime = 353.95759828300004 (current = 359.77835829900005)

Info: evolve_until (target_time = 2.20s, niter_max = -1, max_walltime = 353.96s)      [SPH][rank=0]
---------------- t = 2.1000000000000005, dt = 0.002301871802794784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.2%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 309.18 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3631543588997785e-17,-1.852093834050345e-18,1.3319381314176233e-15)
    sum a = (-6.815771770310601e-17,9.260468597934781e-18,-3.2146736321620393e-15)
    sum e = 3.1562925186955806e-09
    sum de = 7.91088006953737e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.02e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301930114693106 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.723e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.25721026859714 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 360.15s > 353.96s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 11):
   -> walltime = 360.15126450300005 >= 353.95759828300004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000011.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (53.9%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000011.sham              [Shamrock Dump][rank=0]
              - took 1.38 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 360.15126450300005 -> 390.15126450300005

[Simulation] Evolve until next trigger(s) :
   -> t = 2.2000000000000006 (current = 2.1023018718027955)
   -> iter = None (current = 923)
   -> walltime = 390.15126450300005 (current = 360.155140684)

Info: evolve_until (target_time = 2.20s, niter_max = -1, max_walltime = 390.15s)      [SPH][rank=0]
---------------- t = 2.1023018718027955, dt = 0.002301930114693106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (0.8%)
   patch tree reduce : 1.17 us    (0.3%)
   gen split merge   : 1.05 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 348.66 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3475561569825312e-17,-1.830900833382861e-18,1.3244873779870291e-15)
    sum a = (-6.737780776044452e-17,9.154504429450384e-18,-3.2572150560294404e-15)
    sum e = 3.156474571402193e-09
    sum de = 7.901964220019931e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.94e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023020042096478827 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1586e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40167067191499 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.30s (niter = 25) global walltime = 360.45s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.1046038019174884, dt = 0.0023020042096478827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 290.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3321355221666213e-17,-1.809949086727587e-18,1.3169402915239955e-15)
    sum a = (-6.660677561864766e-17,9.049745831381226e-18,-3.298407084554983e-15)
    sum e = 3.1566563723700725e-09
    sum de = 7.889875020171707e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.88e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302086491117724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7986e+04 | 9216 |      1 | 3.293e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.16523103535122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1069058061271364, dt = 0.002302086491117724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 299.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3168908122995424e-17,-1.7892363664340227e-18,1.3092996610197073e-15)
    sum a = (-6.584454003647964e-17,8.946181574175089e-18,-3.3382813302815027e-15)
    sum e = 3.1568378650255036e-09
    sum de = 7.874645864202499e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.82e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023021745739477077 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.383446420102462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.109207892618254, dt = 0.0023021745739477077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.9%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.6%)
   LB compute        : 279.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3018199863105663e-17,-1.7687599016252006e-18,1.3015684576409478e-15)
    sum a = (-6.509099898523623e-17,8.84379933972079e-18,-3.376870207277581e-15)
    sum e = 3.1570189778991e-09
    sum de = 7.856318648879434e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.76e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023022659548644236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.858018240438092 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1115100671922016, dt = 0.0023022659548644236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 312.41 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.28692104637824e-17,-1.7485169744181527e-18,1.2937495851630142e-15)
    sum a = (-6.434605150083788e-17,8.742585281172936e-18,-3.4142058271919994e-15)
    sum e = 3.1571996403760444e-09
    sum de = 7.834935986649479e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.72e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302358103137381 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0774e+04 | 9216 |      1 | 2.995e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.676174227583683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.113812333147066, dt = 0.002302358103137381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 290.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 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.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2721920344434459e-17,-1.728504923147874e-18,1.2858458824469885e-15)
    sum a = (-6.36096014015477e-17,8.64252505429383e-18,-3.4503199254909808e-15)
    sum e = 3.157379782622173e-09
    sum de = 7.810541248986092e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.67e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302448520893638 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0106e+04 | 9216 |      1 | 3.061e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.07602317062031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1161146912502034, dt = 0.002302448520893638 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 267.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2576310297686545e-17,-1.708721141338514e-18,1.2778601246457663e-15)
    sum a = (-6.288155149818603e-17,8.54360468234655e-18,-3.4852437818737343e-15)
    sum e = 3.1575593356067316e-09
    sum de = 7.783178555894068e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.63e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023025348012985737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6857e+04 | 9216 |      1 | 3.432e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.154783687114886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.118417139771097, dt = 0.0023025348012985737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 289.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.226345486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2432361485737154e-17,-1.6891630738368247e-18,1.2697950243574134e-15)
    sum a = (-6.216180819454052e-17,8.445815735972987e-18,-3.5190082304128656e-15)
    sum e = 3.157738231129503e-09
    sum de = 7.75289275983451e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.59e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302614684147373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1530e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35886836980428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1207196745723955, dt = 0.002302614684147373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.4%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 263.13 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2290055410396644e-17,-1.6698281956231434e-18,1.261653232422189e-15)
    sum a = (-6.145027619443593e-17,8.349140537205454e-18,-3.551643650174863e-15)
    sum e = 3.157916401852398e-09
    sum de = 7.719729463841363e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.55e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302686106194293 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40528024785956 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.123022289256543, dt = 0.002302686106194293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2149373905219881e-17,-1.6507140486811845e-18,1.2534373385354914e-15)
    sum a = (-6.07468696166146e-17,8.253570387651231e-18,-3.583179962357205e-15)
    sum e = 3.158093781336166e-09
    sum de = 7.683734986235854e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.52e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302747246735739 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1544e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.373294935992337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1253249753627372, dt = 0.002302747246735739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 324.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2010299080764927e-17,-1.6318181960857511e-18,1.2451498716275673e-15)
    sum a = (-6.005149505385648e-17,8.159090615650193e-18,-3.613646699446563e-15)
    sum e = 3.1582703040794502e-09
    sum de = 7.644956352831662e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.49e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023027965651267017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1545e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.375002405399194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.127627722609473, dt = 0.0023027965651267017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 265.36 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1872813339975622e-17,-1.613138251790817e-18,1.236793299824217e-15)
    sum a = (-5.936406687943184e-17,8.065691394357156e-18,-3.643072924124383e-15)
    sum e = 3.158445905560858e-09
    sum de = 7.603441256404126e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302832832946406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1478e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.315168695535412 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1299305191745996, dt = 0.002302832832946406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.2259114583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1736899321442063e-17,-1.594671852478182e-18,1.2283700305762286e-15)
    sum a = (-5.868449731745888e-17,7.973358864013279e-18,-3.671487328706114e-15)
    sum e = 3.1586205222820224e-09
    sum de = 7.55923804925997e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023028551567579434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1250e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.110338199827687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.132233352007546, dt = 0.0023028551567579434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 293.31 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2259114583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1602539891737928e-17,-1.5764166751819774e-18,1.2198824102365695e-15)
    sum a = (-5.80126987612687e-17,7.882083140168998e-18,-3.6989182090871334e-15)
    sum e = 3.158794091812214e-09
    sum de = 7.51239572010801e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.41e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023028629922847705 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9123e+04 | 9216 |      1 | 3.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.19770587644757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.134536207164304, dt = 0.0023028629922847705 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 318.75 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.146971812198568e-17,-1.558370415014725e-18,1.2113327237082823e-15)
    sum a = (-5.734859064616e-17,7.791852914638251e-18,-3.7253933975523845e-15)
    sum e = 3.1589665528328165e-09
    sum de = 7.46296386505597e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.38e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023028561502247144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0176e+04 | 9216 |      1 | 3.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.145064669021348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1368390701565887, dt = 0.0023028561502247144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 1.82 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 254.76 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.133841724250325e-17,-1.540530792538985e-18,1.2027231942474462e-15)
    sum a = (-5.669208716802134e-17,7.702653870559503e-18,-3.750940197126257e-15)
    sum e = 3.1591378451807168e-09
    sum de = 7.410992661081601e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.36e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023028347935582804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9033e+04 | 9216 |      1 | 3.174e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.116536692885262 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1391419263068134, dt = 0.0023028347935582804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 264.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (61.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1208620648083404e-17,-1.5228955594395469e-18,1.194055983347828e-15)
    sum a = (-5.604310326759292e-17,7.614478722995071e-18,-3.775585402883396e-15)
    sum e = 3.1593079098900374e-09
    sum de = 7.356532818633462e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.35e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302799426172662 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9780e+04 | 9216 |      1 | 3.095e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.78807866180377 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1414447611003715, dt = 0.002302799426172662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 258.44 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.226128472222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1080311873315598e-17,-1.5054624686489717e-18,1.1853331905306041e-15)
    sum a = (-5.540155930986268e-17,7.527312360259231e-18,-3.799355309507966e-15)
    sum e = 3.159476689230733e-09
    sum de = 7.299635552549195e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302750873358214 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1652e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47153829324453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.143747560526544, dt = 0.002302750873358214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 320.84 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0953474557850807e-17,-1.4882293068941972e-18,1.1765568531107049e-15)
    sum a = (-5.476737255125087e-17,7.441146565726905e-18,-3.822275652620289e-15)
    sum e = 3.159644126744141e-09
    sum de = 7.240352539942611e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.31e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023026902582038693 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7507e+04 | 9216 |      1 | 3.350e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.743190866194702 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1460503113999025, dt = 0.0023026902582038693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 265.69 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0828092449737729e-17,-1.4711938602953304e-18,1.167728946280192e-15)
    sum a = (-5.4140460641831137e-17,7.355969282372756e-18,-3.8443716561882055e-15)
    sum e = 3.159810167274583e-09
    sum de = 7.178735881148856e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302618968044389 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47917095821747 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1483530016581063, dt = 0.002302618968044389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 267.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
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.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0704149390022588e-17,-1.4543539344218769e-18,1.1588513830607955e-15)
    sum a = (-5.3520747050000724e-17,7.271770175598605e-18,-3.865668071121718e-15)
    sum e = 3.1599747569964736e-09
    sum de = 7.114838070379306e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023025386179349972 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1505e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33758725565341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1506556206261505, dt = 0.0023025386179349972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 265.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
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.2261284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0581629285163915e-17,-1.4377073419311054e-18,1.1499260142760263e-15)
    sum a = (-5.2908145781881176e-17,7.188537219373155e-18,-3.8861891168399056e-15)
    sum e = 3.160137843437086e-09
    sum de = 7.048711944758657e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023024510094513313 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7623e+04 | 9216 |      1 | 3.336e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.844881548734072 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1529581592440854, dt = 0.0023024510094513313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 261.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2261284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0460516140524325e-17,-1.421251910641706e-18,1.1409546289714495e-15)
    sum a = (-5.2302580543690243e-17,7.10625917183372e-18,-3.9059584558483784e-15)
    sum e = 3.1602993754938985e-09
    sum de = 6.98041063578849e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302358086875015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1684e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.496489523328545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1552606102535368, dt = 0.002302358086875015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 322.04 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
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.2261284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.034079401348775e-17,-1.404985478065158e-18,1.1319389549660802e-15)
    sum a = (-5.1703970207737183e-17,7.024928142853366e-18,-3.924999116249707e-15)
    sum e = 3.160459303446716e-09
    sum de = 6.9099875476048e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023022618914006767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7534e+04 | 9216 |      1 | 3.347e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.76269736498488 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.157562968340412, dt = 0.0023022618914006767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 291.52 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.022244704082679e-17,-1.388905880360638e-18,1.1228806598675726e-15)
    sum a = (-5.1112235481731314e-17,6.944529662440103e-18,-3.943333449240684e-15)
    sum e = 3.1606175789655273e-09
    sum de = 6.837496304215754e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023021645158100134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1424e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.2602461584004 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.1598652302318126, dt = 0.0023021645158100134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 315.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0105459430236787e-17,-1.3730109796226054e-18,1.1137813523099404e-15)
    sum a = (-5.052729671706049e-17,6.8650555001663356e-18,-3.960983134723471e-15)
    sum e = 3.1607741551128974e-09
    sum de = 6.76299071663429e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302068059233718 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.962e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.981519879724146 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.51s (niter = 18) global walltime = 368.11s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.1621673947476228, dt = 0.002302068059233718 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 298.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.989815466997221e-18,-1.357298635993537e-18,1.1046425833116946e-15)
    sum a = (-4.9949077537673146e-17,6.786493103058054e-18,-3.977969219599411e-15)
    sum e = 3.1609289863421747e-09
    sum de = 6.686524761099808e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023019745839771844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0279e+04 | 9216 |      1 | 3.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.22822651874695 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1644694628068564, dt = 0.0023019745839771844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 291.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.875499509953308e-18,-1.341766729508742e-18,1.0954658477115175e-15)
    sum a = (-4.937749857138595e-17,6.708833289088732e-18,-3.9943121105500305e-15)
    sum e = 3.161082028491981e-09
    sum de = 6.608152525586587e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023018860753019977 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3982e+04 | 9216 |      1 | 3.843e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.564586080652468 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1667714373908336, dt = 0.0023018860753019977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 357.48 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.762496013654593e-18,-1.3264131449404408e-18,1.086252585821536e-15)
    sum a = (-4.8812479066327426e-17,6.632064762897732e-18,-4.0100315269873614e-15)
    sum e = 3.16123323877623e-09
    sum de = 6.527928217177176e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023018044059971237 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1418e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.250127658351122 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1690733234661357, dt = 0.0023018044059971237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 263.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.650789539576108e-18,-1.311235785212967e-18,1.0770041854329823e-15)
    sum a = (-4.8253947754054484e-17,6.556179347357348e-18,-4.025146525660166e-15)
    sum e = 3.1613825757726343e-09
    sum de = 6.445906103042055e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023017313006272917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9045e+04 | 9216 |      1 | 3.173e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.115192919468637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1713751278721327, dt = 0.0023017313006272917 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.540364732584543e-18,-1.2962325585718402e-18,1.067721983798333e-15)
    sum a = (-4.770182530417868e-17,6.481163256972082e-18,-4.0396754993204455e-15)
    sum e = 3.1615299994069305e-09
    sum de = 6.362140479044435e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016683117322947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.341401463874195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.17367685917276, dt = 0.0023016683117322947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 299.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.431206371650179e-18,-1.2814014040420576e-18,1.0584072698180935e-15)
    sum a = (-4.7156031953284034e-17,6.407006043990416e-18,-4.05363613968312e-15)
    sum e = 3.1616754709355728e-09
    sum de = 6.276685668053654e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016167974506834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1328e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.166791238975225 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1759785274844923, dt = 0.0023016167974506834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 272.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.323299373970907e-18,-1.2667402738965659e-18,1.0490612864056747e-15)
    sum a = (-4.66164964223291e-17,6.333700640142468e-18,-4.067045484714012e-15)
    sum e = 3.161818952927776e-09
    sum de = 6.189595996135007e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015779056741008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1657e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4619206230345 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.178280144281943, dt = 0.0023015779056741008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.9%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 285.07 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.216628777763103e-18,-1.25224712895346e-18,1.0396852327914277e-15)
    sum a = (-4.608314428584469e-17,6.26123504358215e-18,-4.079919975159314e-15)
    sum e = 3.1619604092464563e-09
    sum de = 6.100925764757835e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301552563668097 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8294e+04 | 9216 |      1 | 3.257e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.43783643473666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.180581722187617, dt = 0.002301552563668097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
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.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.111179774516641e-18,-1.2379199599526066e-18,1.0302802666891464e-15)
    sum a = (-4.555589949315063e-17,6.189599904746986e-18,-4.092275403926412e-15)
    sum e = 3.162099805028665e-09
    sum de = 6.010729249873563e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015414743488864 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1332e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.169020849243942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.182883274751285, dt = 0.0023015414743488864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 298.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.006937723354179e-18,-1.2237567751186354e-18,1.0208475067881947e-15)
    sum a = (-4.5034688508538227e-17,6.118783719504487e-18,-4.104126896515867e-15)
    sum e = 3.162237106666963e-09
    sum de = 5.919060678880739e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015451171434927 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.090e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.818306559608665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.185184816225634, dt = 0.0023015451171434927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 317.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2263454861111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.903888150256525e-18,-1.2097556115185254e-18,1.0113880352183131e-15)
    sum a = (-4.451944074478188e-17,6.048776426177452e-18,-4.115488961219748e-15)
    sum e = 3.162372281791055e-09
    sum de = 5.82597421900694e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.31e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015637532424775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1535e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.350822744623148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.1874863613427777, dt = 0.0023015637532424775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 271.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.802016752081034e-18,-1.1959145294928453e-18,1.0019028998471032e-15)
    sum a = (-4.4010082582477555e-17,5.979572511660085e-18,-4.126375496214441e-15)
    sum e = 3.162505299250612e-09
    sum de = 5.73152397769283e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015974371491253 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9186e+04 | 9216 |      1 | 3.158e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.2396986658411 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.18978792509602, dt = 0.0023015974371491253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.5%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 261.00 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2269965277777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.701309418986299e-18,-1.1822315993252786e-18,9.923931165533584e-16)
    sum a = (-4.3506547406143884e-17,5.911158272149643e-18,-4.1367997751299725e-15)
    sum e = 3.162636129099964e-09
    sum de = 5.6357639752124054e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.36e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301646031849285 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.14129782011022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1920895225331694, dt = 0.002301646031849285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.28 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 258.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.601752214436983e-18,-1.1687049363364868e-18,9.828596715204643e-16)
    sum a = (-4.300876064091793e-17,5.843523601132755e-18,-4.146774413419201e-15)
    sum e = 3.162764742583724e-09
    sum de = 5.5387481371801783e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.39e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301709227136661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1614e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.42343427119807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.194391168565019, dt = 0.002301709227136661 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.8%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 304.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.503331417641277e-18,-1.1553326796180688e-18,9.733035235455738e-16)
    sum a = (-4.251665629049934e-17,5.776662854560184e-18,-4.156311389455944e-15)
    sum e = 3.1628911121245156e-09
    sum de = 5.4405302870500363e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301628916105575 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1464e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.28910196220514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.1966928777921555, dt = 0.002301628916105575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 274.55 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.406040192700982e-18,-1.1421138924519317e-18,9.637262613978527e-16)
    sum a = (-4.203020173163074e-17,5.710569240568859e-18,-4.1654214873556005e-15)
    sum e = 3.1630152027348806e-09
    sum de = 5.3411709155990305e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301520791392381 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1490e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31145120998833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.198994506708261, dt = 0.001005493291739601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 271.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.3643389257231e-18,-1.1364480148113512e-18,9.59527474000526e-16)
    sum a = (-4.182169448225426e-17,5.6822394874140914e-18,-4.169228791965492e-15)
    sum e = 3.1630677584010705e-09
    sum de = 5.296972492321586e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023014778957633794 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1596e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.4098651175404 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 967                                                     [SPH][rank=0]
Info: time since start : 373.294285923 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 22):
   -> t = 2.2000000000000006 >= 2.2000000000000006
--------------------------------
tfinal = 1.2557723510424577
0.6500000000000002
0.6750000000000003
0.7000000000000003
0.7250000000000003
0.7500000000000003
0.7750000000000004
0.8000000000000004
0.8250000000000004
0.8500000000000004
0.8750000000000004
0.9000000000000005
0.9250000000000005
0.9500000000000005
0.9750000000000005
1.0000000000000004
1.0250000000000004
1.0500000000000003
1.0750000000000002
1.1
1.125
1.15
1.1749999999999998
1.1999999999999997
1.2249999999999996
1.2499999999999996
tfinal = 1.2557723510424577
0.6500000000000002
0.6750000000000003
0.7000000000000003
0.7250000000000003
0.7500000000000003
0.7750000000000004
0.8000000000000004
0.8250000000000004
0.8500000000000004
0.8750000000000004
0.9000000000000005
0.9250000000000005
0.9500000000000005
0.9750000000000005
1.0000000000000004
1.0250000000000004
1.0500000000000003
1.0750000000000002
1.1
1.125
1.15
1.1749999999999998
1.1999999999999997
1.2249999999999996
1.2499999999999996
tfinal = 1.2557723510424577
0.6500000000000002
0.6750000000000003
0.7000000000000003
0.7250000000000003
0.7500000000000003
0.7750000000000004
0.8000000000000004
0.8250000000000004
0.8500000000000004
0.8750000000000004
0.9000000000000005
0.9250000000000005
0.9500000000000005
0.9750000000000005
1.0000000000000004
1.0250000000000004
1.0500000000000003
1.0750000000000002
1.1
1.125
1.15
1.1749999999999998
1.1999999999999997
1.2249999999999996
1.2499999999999996
tfinal = 1.2557723510424577
0.6500000000000002
0.6750000000000003
0.7000000000000003
0.7250000000000003
0.7500000000000003
0.7750000000000004
0.8000000000000004
0.8250000000000004
0.8500000000000004
0.8750000000000004
0.9000000000000005
0.9250000000000005
0.9500000000000005
0.9750000000000005
1.0000000000000004
1.0250000000000004
1.0500000000000003
1.0750000000000002
1.1
1.125
1.15
1.1749999999999998
1.1999999999999997
1.2249999999999996
1.2499999999999996
tfinal = 1.2557723510424577
0.6500000000000002
0.6750000000000003
0.7000000000000003
0.7250000000000003
0.7500000000000003
0.7750000000000004
0.8000000000000004
0.8250000000000004
0.8500000000000004
0.8750000000000004
0.9000000000000005
0.9250000000000005
0.9500000000000005
0.9750000000000005
1.0000000000000004
1.0250000000000004
1.0500000000000003
1.0750000000000002
1.1
1.125
1.15
1.1749999999999998
1.1999999999999997
1.2249999999999996
1.2499999999999996
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[8.74506535e-08 1.17834148e-12 8.40830337e-12 ... 8.68987961e-12
 5.27865740e-11 6.21042127e-11]
(9216, 3)
[[8.74506535e-08 1.17834148e-12 8.40830337e-12 2.33020324e-11
  3.07292995e-11]
 [1.02107451e-05 1.18754327e-05 1.18605217e-05 5.68075600e-06
  3.19307717e-10]
 [6.76415229e-07 2.44141848e-07 8.65268259e-12 5.19351762e-11
  5.69501902e-11]
 ...
 [4.15993896e-05 5.24437793e-05 6.62044272e-05 8.34673858e-05
  1.01095839e-04]
 [3.36488256e-05 4.19179295e-05 5.12230213e-05 5.85237861e-05
  4.97869751e-05]
 [3.29173762e-07 1.44319256e-12 8.68987961e-12 5.27865740e-11
  6.21042127e-11]]
compute original rho
0.0006579675904377597 0.0
0.0010468691760293373 0.0
0.001676085455428134 0.0
0.0027232822941576132 0.0
0.004559814925533361 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.2000000000000006 -> 2.3000000000000007

[Simulation] Evolve until next trigger(s) :
   -> t = 2.3000000000000007 (current = 2.2000000000000006)
   -> iter = None (current = 966)
   -> walltime = 390.15126450300005 (current = 379.20061223700003)

Info: evolve_until (target_time = 2.30s, niter_max = -1, max_walltime = 390.15s)      [SPH][rank=0]
---------------- t = 2.2000000000000006, dt = 0.0023014778957633794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.4%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 297.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.268192046615644e-18,-1.1233847088973309e-18,9.499301719826319e-16)
    sum a = (-4.1340960724911665e-17,5.616923903851328e-18,-4.177786551208552e-15)
    sum e = 3.1631894509912886e-09
    sum de = 5.1965208302907235e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.45e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301375650456216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.448402926048995 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.32s (niter = 6) global walltime = 379.59s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.202301477895764, dt = 0.002301375650456216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 316.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (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.227213541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.173604165365412e-18,-1.1105332181984353e-18,9.403056679946176e-16)
    sum a = (-4.086802084402739e-17,5.552665913993677e-18,-4.185900366682265e-15)
    sum e = 3.163307886661503e-09
    sum de = 5.094607535921001e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.45e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023012829516016312 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9025e+04 | 9216 |      1 | 3.175e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.092497966993378 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2046028535462203, dt = 0.0023012829516016312 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 288.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2274305555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.08009949193503e-18,-1.09782890362774e-18,9.306633903743875e-16)
    sum a = (-4.0400497229521724e-17,5.489144066428167e-18,-4.193622624495743e-15)
    sum e = 3.163423955403364e-09
    sum de = 4.991742215513958e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023011977053880588 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9255e+04 | 9216 |      1 | 3.150e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.298273729673554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.206904136497822, dt = 0.0023011977053880588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 269.98 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.987667912368506e-18,-1.0852703888618786e-18,9.210041500643671e-16)
    sum a = (-3.993833926031303e-17,5.4263527661647886e-18,-4.200962200853387e-15)
    sum e = 3.163537641753231e-09
    sum de = 4.8879757804719284e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301120371153235 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1541e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.352544668839872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2092053342032103, dt = 0.002301120371153235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 291.06 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.896296744790598e-18,-1.0728559454733262e-18,9.113287854568045e-16)
    sum a = (-3.948148391227634e-17,5.364279513175117e-18,-4.2079276690281906e-15)
    sum e = 3.163648926120292e-09
    sum de = 4.783361416415594e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301051239605412 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1564e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37196962931803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2115064545743635, dt = 0.002301051239605412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 272.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.805973466754796e-18,-1.0605838825015537e-18,9.016381140858117e-16)
    sum a = (-3.9029867437085984e-17,5.302920236277184e-18,-4.214527112205825e-15)
    sum e = 3.1637577901549422e-09
    sum de = 4.6779520096899594e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009904532430726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1720e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.511296451603464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.213807505813969, dt = 0.0023009904532430726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.1%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 311.46 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.716685710745185e-18,-1.0484525090542523e-18,8.919329346090123e-16)
    sum a = (-3.858342878320154e-17,5.2422619440173406e-18,-4.2207681931231166e-15)
    sum e = 3.163864216703526e-09
    sum de = 4.5718001631738585e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.45e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009380114200812 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.331424481638088 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.19s (niter = 7) global walltime = 381.39s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.216108496267212, dt = 0.0023009380114200812 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.7%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 303.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.628421258419527e-18,-1.0364601764179895e-18,8.82214028300958e-16)
    sum a = (-3.814210635361038e-17,5.182300291931185e-18,-4.226658177686126e-15)
    sum e = 3.1639681897943825e-09
    sum de = 4.4649581777596666e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.45e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300893784285962 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9931e+04 | 9216 |      1 | 3.079e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.902534075528102 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.218409434278632, dt = 0.002300893784285962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 290.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.541168050873127e-18,-1.0246052378329654e-18,8.724821605276053e-16)
    sum a = (-3.77058400466413e-17,5.123026515217343e-18,-4.232203908058058e-15)
    sum e = 3.164069694624505e-09
    sum de = 4.3574780423929015e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300857525579406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.84341950756152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.220710328062918, dt = 0.002300857525579406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 260.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.2276475694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.45491418612127e-18,-1.0128860750950942e-18,8.627380822479009e-16)
    sum a = (-3.727457124194198e-17,5.064430546070335e-18,-4.237411893353616e-15)
    sum e = 3.164168717547348e-09
    sum de = 4.249411399378783e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008288888189676 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1609e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40924657880833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2230111855884975, dt = 0.0023008288888189676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 268.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.2278645833333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.369647919983898e-18,-1.0013010975302232e-18,8.529825311344624e-16)
    sum a = (-3.684823950340972e-17,5.0065050387929085e-18,-4.2422881989546655e-15)
    sum e = 3.1642652460609494e-09
    sum de = 4.140809561907887e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.42e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008074452621325 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1632e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.42930979343591 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2253120144773164, dt = 0.0023008074452621325 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 265.32 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 19.85 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.228081597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.285357674258839e-18,-9.898487317723608e-19,8.432162330878403e-16)
    sum a = (-3.6426788260044427e-17,4.949243103128455e-18,-4.2468385476883e-15)
    sum e = 3.164359268798308e-09
    sum de = 4.031723494781461e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.41e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300792701079599 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.0781200834662 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.2276128219225786, dt = 0.002300792701079599 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 271.02 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 10.89 us   (3.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.228081597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.202032024737036e-18,-9.785274237112562e-19,8.33439903217131e-16)
    sum a = (-3.6010160592042027e-17,4.892637028112064e-18,-4.251068262503024e-15)
    sum e = 3.1644507755181716e-09
    sum de = 3.922203791834741e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.40e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230078411705631 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1642e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.43815386231217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.229913614623658, dt = 0.00230078411705631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 314.20 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.228081597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.119659706167227e-18,-9.673356415661668e-19,8.23654247029246e-16)
    sum a = (-3.5598298323692775e-17,4.836678610725312e-18,-4.254982298347496e-15)
    sum e = 3.1645397570963414e-09
    sum de = 3.812300649010725e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.39e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023007811280346697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3179e+04 | 9216 |      1 | 3.976e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.832257567390062 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.56s (niter = 5) global walltime = 383.58s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.232214398740714, dt = 0.0023007811280346697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (0.2%)
   patch tree reduce : 2.03 us    (0.1%)
   gen split merge   : 1.18 us    (0.0%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.1%)
   LB compute        : 2.46 ms    (99.1%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.228081597222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.038229616291949e-18,-9.562718768579977e-19,8.138599613817789e-16)
    sum a = (-3.519114772285182e-17,4.781358663321199e-18,-4.2585852101407996e-15)
    sum e = 3.164626205517452e-09
    sum de = 3.702063846313285e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.38e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023007831622739575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6914e+04 | 9216 |      1 | 3.424e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.18862447199948 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.234515179868749, dt = 0.0023007831622739575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 303.85 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.228298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.957730798334714e-18,-9.453346468514794e-19,8.040577354786877e-16)
    sum a = (-3.478865333707519e-17,4.726673577734709e-18,-4.261881184472042e-15)
    sum e = 3.1647101138672875e-09
    sum de = 3.59154275157162e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.37e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023007896588387775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9792e+04 | 9216 |      1 | 3.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.775593817540088 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.236815963031023, dt = 0.0023007896588387775 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 313.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.228298611111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.878152450674096e-18,-9.345224744323687e-19,7.942482516617211e-16)
    sum a = (-3.439076163058369e-17,4.6726127225431635e-18,-4.264874059397094e-15)
    sum e = 3.1647914763261366e-09
    sum de = 3.4807863247067e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.36e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008000841682956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.971e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.88306162548489 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2391167526898617, dt = 0.0023008000841682956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.67 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 264.83 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
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.228515625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.7994839159328806e-18,-9.238339179753037e-19,7.844321860782912e-16)
    sum a = (-3.3997420051388255e-17,4.619169026466181e-18,-4.2675672981056544e-15)
    sum e = 3.164870288162749e-09
    sum de = 3.369843067032203e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.35e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008139468383352 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.18453307248521 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.24141755277403, dt = 0.0023008139468383352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 317.18 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2279730902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.721714677927946e-18,-9.132675511789163e-19,7.746102094177606e-16)
    sum a = (-3.360857385285365e-17,4.566337400512821e-18,-4.26996406844908e-15)
    sum e = 3.1649465457269608e-09
    sum de = 3.258760998166001e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.34e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300830810038585 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8433e+04 | 9216 |      1 | 3.241e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.55457893835687 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.25s (niter = 4) global walltime = 385.14s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.243718366720868, dt = 0.002300830810038585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 290.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2279730902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.644834367035474e-18,-9.028219592804295e-19,7.647829872696734e-16)
    sum a = (-3.3224172053390036e-17,4.514109263620542e-18,-4.27206715940701e-15)
    sum e = 3.1650202464422536e-09
    sum de = 3.1475876620265345e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300850301528734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.991e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.68844005169673 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2460191975309067, dt = 0.002300850301528734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 289.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2279730902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.5688327424580536e-18,-8.9249575365921e-19,7.549511808306768e-16)
    sum a = (-3.284416374336353e-17,4.462477942528437e-18,-4.2738790525624136e-15)
    sum e = 3.1650913887988445e-09
    sum de = 3.0363701343256253e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023008721209919793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1710e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49961151460126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2483200478324354, dt = 0.0023008721209919793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 332.48 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.2279730902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.493699693118153e-18,-8.822875604109626e-19,7.451154472231762e-16)
    sum a = (-3.2468498359770016e-17,4.411437534090816e-18,-4.275401900817555e-15)
    sum e = 3.165159972346776e-09
    sum de = 2.925154958795357e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.32e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300896044537305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1452e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.268205921276472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2506209199534273, dt = 0.002300896044537305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 266.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2279730902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.419425232534991e-18,-8.721960200302857e-19,7.352764399607119e-16)
    sum a = (-3.209712638029344e-17,4.360980133313116e-18,-4.276637570670252e-15)
    sum e = 3.1652259976865415e-09
    sum de = 2.8139881218116776e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.32e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002300921926420455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8004e+04 | 9216 |      1 | 3.291e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17009447138065 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 386.36s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2529218159979645, dt = 0.002300921926420455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.7%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 309.70 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2273220486111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.3459994948325445e-18,-8.622197939636743e-19,7.254348092297846e-16)
    sum a = (-3.172999864252188e-17,4.311099394356853e-18,-4.277587689101299e-15)
    sum e = 3.1652894664592164e-09
    sum de = 2.7029150775015178e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.32e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009496978139772 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1564e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.369248299395792 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.255222737924385, dt = 0.0023009496978139772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 1.65 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 299.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2275390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.273412730096166e-18,-8.523575568835671e-19,7.155912020553438e-16)
    sum a = (-3.136706366130366e-17,4.2617883138362876e-18,-4.2782535410589635e-15)
    sum e = 3.1653503813372682e-09
    sum de = 2.5919807497460912e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.32e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023009793631519736 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1544e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35217190349483 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.257523687622199, dt = 0.0023009793631519736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 295.17 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2275390625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.201655311498309e-18,-8.426080011281699e-19,7.057462629003884e-16)
    sum a = (-3.10082761525268e-17,4.2130393624264674e-18,-4.2786360496199824e-15)
    sum e = 3.1654087460145877e-09
    sum de = 2.4812295041241176e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023010109939075405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1615e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.415854353489213 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.62s (niter = 2) global walltime = 387.23s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.259824666985351, dt = 0.0023010109939075405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 294.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.2273220486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1307177084197105e-18,-8.329698363427489e-19,6.95900634238876e-16)
    sum a = (-3.0653588522512715e-17,4.164849553212011e-18,-4.27873580608355e-15)
    sum e = 3.1654645651950706e-09
    sum de = 2.3707051399818207e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.33e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301044720241861 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1577e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38232715005044 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2621256779792587, dt = 0.002301044720241861 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 274.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2273220486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.060590500612818e-18,-8.234417738555219e-19,6.860549570340931e-16)
    sum a = (-3.0302953000284744e-17,4.117209258683166e-18,-4.278553169517316e-15)
    sum e = 3.1655178445805883e-09
    sum de = 2.2604508380543623e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.34e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301080720523467 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9377e+04 | 9216 |      1 | 3.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.404993176772976 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 387.84s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2644267226995005, dt = 0.002301080720523467 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 284.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.2273220486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.9912643736288235e-18,-8.140225543008451e-19,6.762098709499531e-16)
    sum a = (-2.995632221027133e-17,4.070112064869134e-18,-4.278088235633555e-15)
    sum e = 3.165568590856838e-09
    sum de = 2.1505091750813177e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.36e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023011192097913778 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1344e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.173834083087755 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 388.13s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.266727803420024, dt = 0.0023011192097913778 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 268.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.2273220486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.922730117792158e-18,-8.047109283854773e-19,6.663660148555629e-16)
    sum a = (-2.961364976984136e-17,4.023554654976177e-18,-4.277340803953268e-15)
    sum e = 3.1656168116797417e-09
    sum de = 2.0409221554868105e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.37e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301160426919993 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.535332238238098 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 388.44s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2690289226298153, dt = 0.002301160426919993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.3%)
   patch tree reduce : 2.10 us    (0.4%)
   gen split merge   : 1.31 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.2%)
   LB compute        : 496.87 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 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.2273220486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.854978623992838e-18,-7.955056507779091e-19,6.565240274297165e-16)
    sum a = (-2.927489294318108e-17,3.977527662386732e-18,-4.276310235975471e-15)
    sum e = 3.1656625156622393e-09
    sum de = 1.9317311331107655e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.39e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230120462118846 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0798e+04 | 9216 |      1 | 2.992e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.683778123911814 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 388.74s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.271330083056735, dt = 0.00230120462118846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.0%)
   patch tree reduce : 1.83 us    (0.3%)
   gen split merge   : 1.24 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.2%)
   LB compute        : 538.70 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.2271050347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.7880008719481634e-18,-7.864055034749288e-19,6.466845483036696e-16)
    sum a = (-2.894000421350281e-17,3.932027432735208e-18,-4.274995555044319e-15)
    sum e = 3.16570571235784e-09
    sum de = 1.8229768969026022e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.41e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230125203861009 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1482e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.29968178081819 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 389.03s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2736312876779237, dt = 0.00230125203861009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.3%)
   patch tree reduce : 1.94 us    (0.4%)
   gen split merge   : 1.15 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 478.97 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.8%)
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.2271050347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.721787951971611e-18,-7.774092699862764e-19,6.368482187424978e-16)
    sum a = (-2.8608939956094964e-17,3.8870458251078996e-18,-4.273395569134585e-15)
    sum e = 3.16574641224754e-09
    sum de = 1.7146996068494808e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.44e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301302908636597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1732e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.524441270392565 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 389.32s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2759325397165338, dt = 0.002301302908636597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 309.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.226888020833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.656331046443307e-18,-7.685157570573193e-19,6.270156820755804e-16)
    sum a = (-2.8281654673386315e-17,3.842579379686024e-18,-4.271508857406321e-15)
    sum e = 3.165784626723488e-09
    sum de = 1.606938793034101e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.47e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301357431456739 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6381e+04 | 9216 |      1 | 3.493e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.71466852845768 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 389.67s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.2782338426251703, dt = 0.002301357431456739 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.6%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 333.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.226888020833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.591621441539527e-18,-7.597237739471248e-19,6.171875843703703e-16)
    sum a = (-2.7958107189894326e-17,3.798618248709358e-18,-4.269333795666277e-15)
    sum e = 3.165820368073218e-09
    sum de = 1.4997333551575883e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.50e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023014157662968465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1454e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.276337020483584 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 389.96s (max_walltime = 390.15s)  [SPH][rank=0]
---------------- t = 2.280535200056627, dt = 0.0023014157662968465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 310.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2268880208333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.527650512114187e-18,-7.510321591724834e-19,6.073645750584549e-16)
    sum a = (-2.7638251835881662e-17,3.755160559542756e-18,-4.266868517461705e-15)
    sum e = 3.165853649463898e-09
    sum de = 1.3931215550855655e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.53e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301478020533748 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8551e+04 | 9216 |      1 | 3.228e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.666713469282694 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 390.29s > 390.15s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 12):
   -> walltime = 390.28622722700004 >= 390.15126450300005
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000012.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (55.7%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000012.sham              [Shamrock Dump][rank=0]
              - took 1.38 ms, bandwidth = 2.52 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 390.28622722700004 -> 420.28622722700004

[Simulation] Evolve until next trigger(s) :
   -> t = 2.3000000000000007 (current = 2.282836615822924)
   -> iter = None (current = 1002)
   -> walltime = 420.28622722700004 (current = 390.290166612)

Info: evolve_until (target_time = 2.30s, niter_max = -1, max_walltime = 420.29s)      [SPH][rank=0]
---------------- t = 2.282836615822924, dt = 0.002301478020533748 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.32 us    (0.9%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 349.93 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2268880208333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.464409742996792e-18,-7.424397467542454e-19,5.975473077640061e-16)
    sum a = (-2.7322049058660432e-17,3.7121990097489124e-18,-4.264110961580171e-15)
    sum e = 3.1658844849263903e-09
    sum de = 1.28714100090804e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.57e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023015442425822342 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1556e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.369132727160977 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.31s (niter = 25) global walltime = 390.58s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.285138093843458, dt = 0.0023015442425822342 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 265.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2268880208333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.401890705216549e-18,-7.339453939741963e-19,5.877364409580617e-16)
    sum a = (-2.7009453078007146e-17,3.669726696071946e-18,-4.26105882764094e-15)
    sum e = 3.165912889339069e-09
    sum de = 1.1818286507149001e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.60e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230161441436763 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0862e+04 | 9216 |      1 | 2.986e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.746417757465277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.28743963808604, dt = 0.00230161441436763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 293.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2266710069444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3400850855087644e-18,-7.255479740930862e-19,5.779326388504778e-16)
    sum a = (-2.67004261140165e-17,3.627740022666112e-18,-4.257709555873454e-15)
    sum e = 3.165938878412184e-09
    sum de = 1.0772208199550723e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.64e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023016884471187783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9389e+04 | 9216 |      1 | 3.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.422615643935426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2897412525004075, dt = 0.0023016884471187783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 315.82 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.2261284722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2789846534766524e-18,-7.172463654177696e-19,5.681365723204452e-16)
    sum a = (-2.639492333975404e-17,3.586231640924341e-18,-4.254060330722883e-15)
    sum e = 3.165962468672734e-09
    sum de = 9.733531656548997e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.68e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.00230176617933982 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1447e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.27419100179623 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2920429409475265, dt = 0.00230176617933982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.77 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 259.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2259114583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.218581297844944e-18,-7.09039468518039e-19,5.583489198162944e-16)
    sum a = (-2.6092906341556293e-17,3.545198168948683e-18,-4.250108188961567e-15)
    sum e = 3.165983677449047e-09
    sum de = 8.702606696465176e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.73e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023018473767124526 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.494103705612666 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.294344707126866, dt = 0.0023018473767124526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 316.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2259114583333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1588669959764006e-18,-7.00926187986486e-19,5.48570367883793e-16)
    sum a = (-2.5794333752193155e-17,3.504629968190895e-18,-4.245850036589489e-15)
    sum e = 3.1660025228554027e-09
    sum de = 7.679776469587916e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.77e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301931734821032 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.510057134867072 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.2966465545035786, dt = 0.002301931734821032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.9%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 284.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2256944444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.099833834984906e-18,-6.929054599268983e-19,5.388016117515209e-16)
    sum a = (-2.5499168809787257e-17,3.464528033932931e-18,-4.24128263027525e-15)
    sum e = 3.1660190237774294e-09
    sum de = 6.6653773518592525e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.82e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302018884417672 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.56175827718505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.2989484862383995, dt = 0.001051513761601175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 300.70 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (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.2256944444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.073360832887843e-18,-6.8930861702905185e-19,5.343471016278701e-16)
    sum a = (-2.5366804384421204e-17,3.4465432907789714e-18,-4.239113333990101e-15)
    sum e = 3.166024859206696e-09
    sum de = 6.20841629664351e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.84e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302059152759597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9170e+04 | 9216 |      1 | 3.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.981392128592457 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1011                                                    [SPH][rank=0]
Info: time since start : 392.678192819 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 23):
   -> t = 2.3000000000000007 >= 2.3000000000000007
--------------------------------
tfinal = 1.8836585265636852
1.2749999999999995
1.2999999999999994
1.3249999999999993
1.3499999999999992
1.3749999999999991
1.399999999999999
1.424999999999999
1.4499999999999988
1.4749999999999988
1.4999999999999987
1.5249999999999986
1.5499999999999985
1.5749999999999984
1.5999999999999983
1.6249999999999982
1.6499999999999981
1.674999999999998
1.699999999999998
1.7249999999999979
1.7499999999999978
1.7749999999999977
1.7999999999999976
1.8249999999999975
1.8499999999999974
1.8749999999999973
tfinal = 1.8836585265636852
1.2749999999999995
1.2999999999999994
1.3249999999999993
1.3499999999999992
1.3749999999999991
1.399999999999999
1.424999999999999
1.4499999999999988
1.4749999999999988
1.4999999999999987
1.5249999999999986
1.5499999999999985
1.5749999999999984
1.5999999999999983
1.6249999999999982
1.6499999999999981
1.674999999999998
1.699999999999998
1.7249999999999979
1.7499999999999978
1.7749999999999977
1.7999999999999976
1.8249999999999975
1.8499999999999974
1.8749999999999973
tfinal = 1.8836585265636852
1.2749999999999995
1.2999999999999994
1.3249999999999993
1.3499999999999992
1.3749999999999991
1.399999999999999
1.424999999999999
1.4499999999999988
1.4749999999999988
1.4999999999999987
1.5249999999999986
1.5499999999999985
1.5749999999999984
1.5999999999999983
1.6249999999999982
1.6499999999999981
1.674999999999998
1.699999999999998
1.7249999999999979
1.7499999999999978
1.7749999999999977
1.7999999999999976
1.8249999999999975
1.8499999999999974
1.8749999999999973
tfinal = 1.8836585265636852
1.2749999999999995
1.2999999999999994
1.3249999999999993
1.3499999999999992
1.3749999999999991
1.399999999999999
1.424999999999999
1.4499999999999988
1.4749999999999988
1.4999999999999987
1.5249999999999986
1.5499999999999985
1.5749999999999984
1.5999999999999983
1.6249999999999982
1.6499999999999981
1.674999999999998
1.699999999999998
1.7249999999999979
1.7499999999999978
1.7749999999999977
1.7999999999999976
1.8249999999999975
1.8499999999999974
1.8749999999999973
tfinal = 1.8836585265636852
1.2749999999999995
1.2999999999999994
1.3249999999999993
1.3499999999999992
1.3749999999999991
1.399999999999999
1.424999999999999
1.4499999999999988
1.4749999999999988
1.4999999999999987
1.5249999999999986
1.5499999999999985
1.5749999999999984
1.5999999999999983
1.6249999999999982
1.6499999999999981
1.674999999999998
1.699999999999998
1.7249999999999979
1.7499999999999978
1.7749999999999977
1.7999999999999976
1.8249999999999975
1.8499999999999974
1.8749999999999973
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.85483145e-13 1.29689154e-12 7.67151831e-12 ... 9.19187287e-12
 3.39864883e-11 2.31029579e-11]
(9216, 3)
[[1.85483145e-13 1.29689154e-12 7.67151831e-12 1.46644377e-11
  1.89005352e-11]
 [9.95826779e-06 1.10615672e-05 9.33502889e-06 5.40703631e-11
  2.89527554e-10]
 [5.13302333e-07 1.17659911e-12 8.66378948e-12 4.29859505e-11
  3.72828740e-11]
 ...
 [4.17001314e-05 5.25994598e-05 6.64248333e-05 8.31741187e-05
  9.30574864e-05]
 [3.35867761e-05 4.15993761e-05 4.98861485e-05 5.27861594e-05
  2.99433227e-05]
 [1.98404696e-07 1.48742819e-12 9.19187287e-12 3.39864883e-11
  2.31029579e-11]]
compute original rho
0.0006587895848976737 0.0
0.0010503944504608126 0.0
0.001691094628667801 0.0
0.0027863278972427487 0.0
0.00483036092028774 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.3000000000000007 -> 2.400000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 2.400000000000001 (current = 2.3000000000000007)
   -> iter = None (current = 1010)
   -> walltime = 420.28622722700004 (current = 398.77535757100003)

Info: evolve_until (target_time = 2.40s, niter_max = -1, max_walltime = 420.29s)      [SPH][rank=0]
---------------- t = 2.3000000000000007, dt = 0.002302059152759597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.1%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 329.66 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2256944444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0150345401647074e-18,-6.813839261639387e-19,5.245895525001219e-16)
    sum a = (-2.507517195099837e-17,3.406919246173607e-18,-4.2340677978071365e-15)
    sum e = 3.166038916629148e-09
    sum de = 5.203320524940054e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.88e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002302149948115537 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8060e+04 | 9216 |      1 | 3.284e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.232940085569993 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.26s (niter = 16) global walltime = 399.10s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.30230205915276, dt = 0.002302149948115537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.8%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 285.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2256944444444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9576434117613796e-18,-6.73586295550175e-19,5.148479011004816e-16)
    sum a = (-2.478821702786127e-17,3.3679317509898443e-18,-4.22872642009436e-15)
    sum e = 3.16604973831304e-09
    sum de = 4.2110415304945645e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.93e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023021009576079405 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1744e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.546973579514617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3046042091008756, dt = 0.0023021009576079405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 263.26 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2254774305555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.900908740254092e-18,-6.658778543370387e-19,5.051190942853834e-16)
    sum a = (-2.4504544749456185e-17,3.3293894394324094e-18,-4.223064081463057e-15)
    sum e = 3.1660582901534517e-09
    sum de = 3.2283413351513102e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 6.98e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023019102179016693 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1816e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61071629257704 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3069063100584835, dt = 0.0023019102179016693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 313.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2245008680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.844827999456832e-18,-6.5825826281474155e-19,4.9540449756304685e-16)
    sum a = (-2.422413955755345e-17,3.2912921508644065e-18,-4.217077692193117e-15)
    sum e = 3.166064590151135e-09
    sum de = 2.255605289879926e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.00e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301743137658112 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1430e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.261239543730724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.309208220276385, dt = 0.002301743137658112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 315.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.2245008680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.789392986274157e-18,-6.507264019716376e-19,4.857047579894747e-16)
    sum a = (-2.394696518151057e-17,3.2536321301845646e-18,-4.2107636008138875e-15)
    sum e = 3.166068662183485e-09
    sum de = 1.2931167253161215e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.00e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301601037103263 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1688e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.491143542625004 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3115099634140432, dt = 0.002301601037103263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 299.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.2245008680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.734595618395834e-18,-6.432811806882972e-19,4.760205268270259e-16)
    sum a = (-2.367297847429036e-17,3.2164059921543367e-18,-4.204118115042086e-15)
    sum e = 3.1660705305071007e-09
    sum de = 3.411519350096912e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.01e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301484916959166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.149e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.314682665276177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3138115644511466, dt = 0.002301484916959166 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 297.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2240668402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6804279195392425e-18,-6.359215106863379e-19,4.663524600247933e-16)
    sum a = (-2.3402139303543308e-17,3.1796073970079498e-18,-4.19713750753266e-15)
    sum e = 3.1660702199297097e-09
    sum de = -6.000206374152994e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.03e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301395437083424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.017e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.460470689528794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3161130493681057, dt = 0.002301395437083424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 276.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.2240668402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.62688200908869e-18,-6.2864632246227515e-19,4.567012197976464e-16)
    sum a = (-2.3134410241139e-17,3.1432310478815846e-18,-4.1898179969203275e-15)
    sum e = 3.166067755789223e-09
    sum de = -1.5301401913604433e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.05e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301332903794596 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1672e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.472598822104917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3184144448051893, dt = 0.002301332903794596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 316.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2240668402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.573950104714186e-18,-6.214545595262045e-19,4.470674763245032e-16)
    sum a = (-2.286975027281496e-17,3.1072723271208345e-18,-4.182155764690761e-15)
    sum e = 3.1660631639362437e-09
    sum de = -2.4489534079550286e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.08e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023012972646034727 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0700e+04 | 9216 |      1 | 3.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.5982756486377 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.3207157777089837, dt = 0.0023012972646034727 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 251.77 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2236328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5216245465038406e-18,-6.143451788397323e-19,4.3745190937678563e-16)
    sum a = (-2.2608123213322957e-17,3.071725546241914e-18,-4.174146971507551e-15)
    sum e = 3.1660564707186846e-09
    sum de = -3.3562143923306564e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.11e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023012881107489524 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7943e+04 | 9216 |      1 | 3.298e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.11905641709854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.323017074973587, dt = 0.0023012881107489524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 253.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.2236328125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.469897782078627e-18,-6.073171551028538e-19,4.2785520988528004e-16)
    sum a = (-2.234948907153398e-17,3.0365865340100232e-18,-4.165787779942418e-15)
    sum e = 3.1660477029681113e-09
    sum de = -4.25168450105597e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.15e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023013046866320764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.64970786754575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.325318363084336, dt = 0.0023013046866320764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 315.65 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.2231987847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4187623940169585e-18,-6.003694768918016e-19,4.1827808139820415e-16)
    sum a = (-2.2093812131053985e-17,3.0018470766950446e-18,-4.1570743712889225e-15)
    sum e = 3.1660368879882293e-09
    sum de = -5.135132179318941e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.20e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023013459066497017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50733145368281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.327619667770968, dt = 0.0023013459066497017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 302.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.222981770833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3682110851851106e-18,-5.935011613253185e-19,4.087212414143907e-16)
    sum a = (-2.1841055431394184e-17,2.967506238439342e-18,-4.148002926903726e-15)
    sum e = 3.1660240535451925e-09
    sum de = -6.006332867989393e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.26e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023014103797224586 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39207486530228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.329921013677618, dt = 0.0023014103797224586 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 295.26 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (60.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2223307291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3182366937677075e-18,-5.86711226752314e-19,3.9918542268860685e-16)
    sum a = (-2.1591183107510605e-17,2.9335568256093525e-18,-4.138569665898722e-15)
    sum e = 3.166009227859271e-09
    sum de = -6.865068897434907e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.32e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301496439505595 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8478e+04 | 9216 |      1 | 3.236e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.60126320242914 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.33222242405734, dt = 0.002301496439505595 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 278.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.222113715277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.268832192154188e-18,-5.799987221097181e-19,3.8967137424057246e-16)
    sum a = (-2.1344160763847428e-17,2.8999927315801164e-18,-4.12877085097189e-15)
    sum e = 3.1659924395977882e-09
    sum de = -7.711129402939466e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.39e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301602180349985 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8969e+04 | 9216 |      1 | 3.181e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.044120041758237 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3345239204968458, dt = 0.002301602180349985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 307.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2216796875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.219990685750452e-18,-5.733627164429562e-19,3.801798622158657e-16)
    sum a = (-2.1099952487586638e-17,2.8668133151123416e-18,-4.118602820257875e-15)
    sum e = 3.1659737178689805e-09
    sum de = -8.544310305505437e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.43e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.0023017254980188515 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.044e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.2185023083354 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.336825522677196, dt = 0.0023017254980188515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 294.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.2214626736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.171705422300836e-18,-5.668022819025794e-19,3.7071167046993313e-16)
    sum a = (-2.0858527305978365e-17,2.834011785201213e-18,-4.108061990350453e-15)
    sum e = 3.1659530922162432e-09
    sum de = -9.36441422480392e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.45e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.51e-02 |
+-------------+----------+
Info: cfl dt = 0.002301864134182338 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.509976669532747 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.94s (niter = 13) global walltime = 403.93s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.3391272481752146, dt = 0.002301864134182338 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 298.64 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2212456597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1239697736226735e-18,-5.603165218180352e-19,3.6126760096222723e-16)
    sum a = (-2.061984875526042e-17,2.8015824755928726e-18,-4.097144864617839e-15)
    sum e = 3.165930592612869e-09
    sum de = -1.0171250448040765e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.46e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002302015723618907 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9588e+04 | 9216 |      1 | 3.115e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.604860768350257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.341429112309397, dt = 0.002302015723618907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 341.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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.2208116319444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.076777260280048e-18,-5.539045588460339e-19,3.518484739312729e-16)
    sum a = (-2.0383886029888786e-17,2.7695231127806492e-18,-4.0858480201038254e-15)
    sum e = 3.1659062494566035e-09
    sum de = -1.0964634952550271e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.47e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002302177842996228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9073e+04 | 9216 |      1 | 3.170e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.14328166597658 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.343731128033016, dt = 0.002302177842996228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 286.83 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2205946180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.030121524528926e-18,-5.475655246747785e-19,3.4245512790665695e-16)
    sum a = (-2.015060650456716e-17,2.7378271244587353e-18,-4.07416812786198e-15)
    sum e = 3.1658800935637075e-09
    sum de = -1.1744390437603617e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.48e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023023480600575853 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8684e+04 | 9216 |      1 | 3.213e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.795200500613383 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3460333058760123, dt = 0.0023023480600575853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 275.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2205946180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.983996340202505e-18,-5.412985786514188e-19,3.330884194157242e-16)
    sum a = (-1.991998200690373e-17,2.7064927001385137e-18,-4.062101957864274e-15)
    sum e = 3.1658521561622574e-09
    sum de = -1.2510346356686626e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.49e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002302523982047062 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1663e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.476447275433788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.34833565393607, dt = 0.002302523982047062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 309.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2198350694444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9383955929009075e-18,-5.351028856819621e-19,3.2374922250209184e-16)
    sum a = (-1.9691978899788354e-17,2.6755149476271213e-18,-4.0496463690058054e-15)
    sum e = 3.16582246888443e-09
    sum de = -1.3262338960191124e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.50e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023027033022157257 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7216e+04 | 9216 |      1 | 3.386e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.478999094686394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3506381779181167, dt = 0.0023027033022157257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 322.60 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2198350694444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8933132993789625e-18,-5.289776320671949e-19,3.144384280815965e-16)
    sum a = (-1.9466566935129077e-17,2.644888471592379e-18,-4.036798322664504e-15)
    sum e = 3.1657910637575803e-09
    sum de = -1.4000211367909542e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.50e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023028838433272057 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6668e+04 | 9216 |      1 | 3.456e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.987934853295883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3529408812203325, dt = 0.0023028838433272057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 307.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2196180555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.848743585231549e-18,-5.22922023029145e-19,3.051569430647782e-16)
    sum a = (-1.924371791598466e-17,2.61460951421255e-18,-4.023554898557124e-15)
    sum e = 3.1657579731938472e-09
    sum de = -1.4723813710389052e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.50e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023030635971473916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6071e+04 | 9216 |      1 | 3.535e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.452730046810654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3552437650636597, dt = 0.0023030635971473916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 303.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.2196180555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8046806767643746e-18,-5.169352754412145e-19,2.9590568928035454e-16)
    sum a = (-1.9023403441239194e-17,2.5846758020618366e-18,-4.0099132875732e-15)
    sum e = 3.1657232299779236e-09
    sum de = -1.5433003149755115e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023032407590284115 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8186e+04 | 9216 |      1 | 3.270e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.356740273543036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3575468286608072, dt = 0.0023032407590284115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 306.35 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 19.89 us   (5.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.219401041666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.761118897538945e-18,-5.110166145029878e-19,2.86685602304419e-16)
    sum a = (-1.8805593570570175e-17,2.555082581204149e-18,-3.99587079369332e-15)
    sum e = 3.165686867253499e-09
    sum de = -1.6127644018024098e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023034137568277175 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1596e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.42734414532914 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3598500694198354, dt = 0.0023034137568277175 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 312.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.218967013888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.718052668997551e-18,-5.051652822402663e-19,2.7749763017022233e-16)
    sum a = (-1.8590263569122384e-17,2.5258265826280448e-18,-3.981424840057721e-15)
    sum e = 3.16564891850774e-09
    sum de = -1.6807607965277795e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023035812735669684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9944e+04 | 9216 |      1 | 3.078e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.942903549305925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3621534831766633, dt = 0.0023035812735669684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 320.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.21875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6754764831047096e-18,-4.99380529742254e-19,2.6834273197105544e-16)
    sum a = (-1.8377380507866056e-17,2.4969019870812475e-18,-3.966572967610263e-15)
    sum e = 3.1656094175539733e-09
    sum de = -1.7472773978202393e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023037422634055015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5287e+04 | 9216 |      1 | 3.645e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.754224717156113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3644570644502303, dt = 0.0023037422634055015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 311.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
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.218315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.633384931633495e-18,-4.936616262601696e-19,2.592218764321115e-16)
    sum a = (-1.8166925062743806e-17,2.4683090431097143e-18,-3.951312841050413e-15)
    sum e = 3.165568398513111e-09
    sum de = -1.8123028504475478e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002303895960686711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1640e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47242086947401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3667608067136356, dt = 0.002303895960686711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 315.01 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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.218315972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.591772643913383e-18,-4.880078343145255e-19,2.5013604043726114e-16)
    sum a = (-1.7958863275732064e-17,2.4400392870740657e-18,-3.935642247295249e-15)
    sum e = 3.1655258957934043e-09
    sum de = -1.8758265475352792e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023040418820126185 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1585e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.425447523341127 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.79s (niter = 9) global walltime = 408.09s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.3690647026743226, dt = 0.0023040418820126185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 263.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2176649305555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.550634347119421e-18,-4.824184469412323e-19,2.410862075751227e-16)
    sum a = (-1.7753172047201215e-17,2.4120920631116486e-18,-3.9195590932243004e-15)
    sum e = 3.1654819440691885e-09
    sum de = -1.9378386471398722e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.51e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002304179821478358 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60352725884952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.371368744556335, dt = 0.002304179821478358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 293.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
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.217013888888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.509964806924935e-18,-4.768927488819276e-19,2.320733667347975e-16)
    sum a = (-1.7549824363195844e-17,2.384463637545775e-18,-3.903061387991199e-15)
    sum e = 3.165436578258159e-09
    sum de = -1.998330070853612e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.52e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043098393894126 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1560e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.405771743589522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3736729243778134, dt = 0.0023043098393894126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.0%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 310.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2167968750000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.469758848795079e-18,-4.714300363029554e-19,2.230985108139964e-16)
    sum a = (-1.7348793426488854e-17,2.357150089252268e-18,-3.886147256501134e-15)
    sum e = 3.1653898334982124e-09
    sum de = -2.057292510412953e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.52e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002304432244950183 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38147456142042 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.3759772342172027, dt = 0.002304432244950183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 320.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.216579861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.43001134864725e-18,-4.660296130256422e-19,2.141626354673419e-16)
    sum a = (-1.71500576124074e-17,2.330147706821228e-18,-3.8688149657361884e-15)
    sum e = 3.1653417451235915e-09
    sum de = -2.1147184345220758e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.52e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023045475735637947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1256e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.135911585742125 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.378281666462153, dt = 0.0023045475735637947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 289.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2163628472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3907172116015515e-18,-4.606907893082339e-19,2.052667378706908e-16)
    sum a = (-1.6953586354651805e-17,2.3034532587954103e-18,-3.851062878315513e-15)
    sum e = 3.16529234864062e-09
    sum de = -2.1706010780409135e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.53e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002304656559516079 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9605e+04 | 9216 |      1 | 3.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.65110319010371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.380586214035717, dt = 0.002304656559516079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 316.85 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.215711805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3518714061833933e-18,-4.554128800952732e-19,1.964118158124218e-16)
    sum a = (-1.67593579707842e-17,2.27706498591252e-18,-3.832889494179201e-15)
    sum e = 3.165241679703936e-09
    sum de = -2.2249344481901305e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.54e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047601049179392 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8527e+04 | 9216 |      1 | 3.231e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.68155768931655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.382890870595233, dt = 0.0023047601049179392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.2%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 302.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.215494791666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3134689214282993e-18,-4.5019519943233505e-19,1.8759886672352703e-16)
    sum a = (-1.656734403725628e-17,2.2509763313753248e-18,-3.8142933938900925e-15)
    sum e = 3.1651897740926207e-09
    sum de = -2.2777133142873547e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.55e-02 |
| dust1_fluid | 2.35e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023048592458579293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1507e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.365982044428772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3851956307001507, dt = 0.0023048592458579293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 305.73 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.215277777777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2755047983336868e-18,-4.450370799044223e-19,1.7882888710339926e-16)
    sum a = (-1.6377524462263346e-17,2.225184865346941e-18,-3.795273252544454e-15)
    sum e = 3.165136667687204e-09
    sum de = -2.328933205808785e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 7.56e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049551167644206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3792866325987 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.387500489946009, dt = 0.0023049551167644206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 327.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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.215060763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2379740932663558e-18,-4.399378515063653e-19,1.7010287197523103e-16)
    sum a = (-1.6189870062454158e-17,2.199689377938527e-18,-3.775827857786237e-15)
    sum e = 3.1650823964472456e-09
    sum de = -2.3785904066865436e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.57e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050489139910075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 9216 |      1 | 3.073e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.000744137010578 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.16s (niter = 7) global walltime = 410.79s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.3898054450627733, dt = 0.0023050489139910075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.6%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 297.54 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.2146267361111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.200871918256503e-18,-4.348968428168721e-19,1.614218144534891e-16)
    sum a = (-1.6004359547116445e-17,2.1744847566935456e-18,-3.75595610291032e-15)
    sum e = 3.1650269963899097e-09
    sum de = -2.426681947226769e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.59e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002305141859629798 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1513e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.374906026762762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.392110493976764, dt = 0.002305141859629798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 298.84 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2139756944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.164193404634079e-18,-4.2991339592888035e-19,1.5278670550141953e-16)
    sum a = (-1.582096659150289e-17,2.1495666687070923e-18,-3.73565697338253e-15)
    sum e = 3.1649705035696303e-09
    sum de = -2.473205582370315e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.60e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002305235166513092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.333315703208353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.3944156358363937, dt = 0.002305235166513092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 268.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
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.2139756944444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.12793372935744e-18,-4.249868591290744e-19,1.441985338625282e-16)
    sum a = (-1.5639667915151556e-17,2.1249340686465894e-18,-3.714929559107536e-15)
    sum e = 3.164912954059485e-09
    sum de = -2.5181597887241513e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.62e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002305330005295389 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7952e+04 | 9216 |      1 | 3.297e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.170062031829236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.396720871002907, dt = 0.002305330005295389 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.8%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 372.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213758680555555
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0920881018094093e-18,-4.201165768298833e-19,1.3565828606360877e-16)
    sum a = (-1.5460441700671542e-17,2.1005824424128075e-18,-3.693773046371848e-15)
    sum e = 3.164854383933427e-09
    sum de = -2.5615437476404334e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.64e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002305427474419853 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.029964596425025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.399026201008202, dt = 0.0009737989917986134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 262.55 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 7.00 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2135416666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0772393271154755e-18,-4.180991009855672e-19,1.3208567996663587e-16)
    sum a = (-1.5386196965449133e-17,2.09049597471951e-18,-3.684807905611982e-15)
    sum e = 3.1648289382250747e-09
    sum de = -2.578749152705544e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.65e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002305471169932884 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9952e+04 | 9216 |      1 | 3.077e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.393427308498092 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1055                                                    [SPH][rank=0]
Info: time since start : 412.30796813800004 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 24):
   -> t = 2.400000000000001 >= 2.400000000000001
--------------------------------
tfinal = 2.5115447020849127
1.8999999999999972
1.9249999999999972
1.949999999999997
1.974999999999997
1.999999999999997
2.024999999999997
2.0499999999999967
2.0749999999999966
2.0999999999999965
2.1249999999999964
2.1499999999999964
2.1749999999999963
2.199999999999996
2.224999999999996
2.249999999999996
2.274999999999996
2.299999999999996
2.3249999999999957
2.3499999999999956
2.3749999999999956
2.3999999999999955
2.4249999999999954
2.4499999999999953
2.474999999999995
2.499999999999995
tfinal = 2.5115447020849127
1.8999999999999972
1.9249999999999972
1.949999999999997
1.974999999999997
1.999999999999997
2.024999999999997
2.0499999999999967
2.0749999999999966
2.0999999999999965
2.1249999999999964
2.1499999999999964
2.1749999999999963
2.199999999999996
2.224999999999996
2.249999999999996
2.274999999999996
2.299999999999996
2.3249999999999957
2.3499999999999956
2.3749999999999956
2.3999999999999955
2.4249999999999954
2.4499999999999953
2.474999999999995
2.499999999999995
tfinal = 2.5115447020849127
1.8999999999999972
1.9249999999999972
1.949999999999997
1.974999999999997
1.999999999999997
2.024999999999997
2.0499999999999967
2.0749999999999966
2.0999999999999965
2.1249999999999964
2.1499999999999964
2.1749999999999963
2.199999999999996
2.224999999999996
2.249999999999996
2.274999999999996
2.299999999999996
2.3249999999999957
2.3499999999999956
2.3749999999999956
2.3999999999999955
2.4249999999999954
2.4499999999999953
2.474999999999995
2.499999999999995
tfinal = 2.5115447020849127
1.8999999999999972
1.9249999999999972
1.949999999999997
1.974999999999997
1.999999999999997
2.024999999999997
2.0499999999999967
2.0749999999999966
2.0999999999999965
2.1249999999999964
2.1499999999999964
2.1749999999999963
2.199999999999996
2.224999999999996
2.249999999999996
2.274999999999996
2.299999999999996
2.3249999999999957
2.3499999999999956
2.3749999999999956
2.3999999999999955
2.4249999999999954
2.4499999999999953
2.474999999999995
2.499999999999995
tfinal = 2.5115447020849127
1.8999999999999972
1.9249999999999972
1.949999999999997
1.974999999999997
1.999999999999997
2.024999999999997
2.0499999999999967
2.0749999999999966
2.0999999999999965
2.1249999999999964
2.1499999999999964
2.1749999999999963
2.199999999999996
2.224999999999996
2.249999999999996
2.274999999999996
2.299999999999996
2.3249999999999957
2.3499999999999956
2.3749999999999956
2.3999999999999955
2.4249999999999954
2.4499999999999953
2.474999999999995
2.499999999999995
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.30985794e-13 1.03124558e-12 3.17177047e-12 ... 6.48736217e-12
 9.36427538e-12 9.26940138e-12]
(9216, 3)
[[1.30985794e-13 1.03124558e-12 3.17177047e-12 4.83369117e-12
  7.35653408e-12]
 [9.70080178e-06 1.02456571e-05 6.87907463e-06 4.08066061e-11
  1.74772541e-10]
 [3.50951098e-07 1.12417164e-12 6.15398334e-12 2.36469997e-11
  1.67187084e-11]
 ...
 [4.17757318e-05 5.27191467e-05 6.65551350e-05 8.23052980e-05
  8.10421235e-05]
 [3.34974797e-05 4.12331976e-05 4.83867191e-05 4.65148123e-05
  1.22912789e-05]
 [7.14238483e-08 1.08375329e-12 6.48736217e-12 9.36427538e-12
  9.26940138e-12]]
compute original rho
0.0006596348165509385 0.0
0.0010540158919540073 0.0
0.001706434505340078 0.0
0.002849893500720327 0.0
0.005094332247261515 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.400000000000001 -> 2.500000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 2.500000000000001 (current = 2.400000000000001)
   -> iter = None (current = 1054)
   -> walltime = 420.28622722700004 (current = 418.54371384700005)

Info: evolve_until (target_time = 2.50s, niter_max = -1, max_walltime = 420.29s)      [SPH][rank=0]
---------------- t = 2.400000000000001, dt = 0.002305471169932884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.3%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 297.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2135416666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.041803043142656e-18,-4.132844339811046e-19,1.2359482669707424e-16)
    sum a = (-1.5209015828781976e-17,2.0664221121636066e-18,-3.66293751609199e-15)
    sum e = 3.1647694033976206e-09
    sum de = -2.620557031563048e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.67e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023055725299243263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.344681690306675 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.29s (niter = 1) global walltime = 418.84s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.402305471169934, dt = 0.0023055725299243263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 336.06 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213324652777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0069417971138965e-18,-4.0854789865118346e-19,1.1517486935814327e-16)
    sum a = (-1.503470837411607e-17,2.0427397800949416e-18,-3.640739410860189e-15)
    sum e = 3.1647085025356786e-09
    sum de = -2.6601341278324827e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023056802788713397 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0013e+04 | 9216 |      1 | 3.071e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.02974195018307 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 419.14s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.404611043699858, dt = 0.0023056802788713397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 327.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.2128906249999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9724775058684903e-18,-4.0386529449895225e-19,1.0680607796786516e-16)
    sum a = (-1.486238712818154e-17,2.019326248712238e-18,-3.618109574046624e-15)
    sum e = 3.1646467120406056e-09
    sum de = -2.69814732422445e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.73e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023057935361896365 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.998e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.69092704224351 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 419.44s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.4069167239787292, dt = 0.0023057935361896365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 306.17 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2128906249999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.938406568481581e-18,-3.992361370994742e-19,9.848955288209624e-17)
    sum a = (-1.4692032902340575e-17,1.9961805212591016e-18,-3.595048219327472e-15)
    sum e = 3.164584060038773e-09
    sum de = -2.734594811494906e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.76e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023059128336444077 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.415731672028624 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 419.74s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.4092225175149187, dt = 0.0023059128336444077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 265.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
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.2126736111111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.904724422205134e-18,-3.9465980346019707e-19,9.022627241791518e-17)
    sum a = (-1.4523622329987657e-17,1.973299041789887e-18,-3.571555065850278e-15)
    sum e = 3.1645205824040952e-09
    sum de = -2.7694794124607352e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.79e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023060385317543786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1534e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.404205831534046 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 420.03s (max_walltime = 420.29s)  [SPH][rank=0]
---------------- t = 2.411528430348563, dt = 0.0023060385317543786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 268.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2124565972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.871426559391143e-18,-3.9013568122874104e-19,8.201721539897414e-17)
    sum a = (-1.4357133563448653e-17,1.950677801303265e-18,-3.5476298894162757e-15)
    sum e = 3.1644563148809553e-09
    sum de = -2.8028045574746275e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.82e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023061708289513387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.471673746697416 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 420.32s > 420.29s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 13):
   -> walltime = 420.321977554 >= 420.28622722700004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000013.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (55.7%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000013.sham              [Shamrock Dump][rank=0]
              - took 1.51 ms, bandwidth = 2.31 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 420.321977554 -> 450.321977554

[Simulation] Evolve until next trigger(s) :
   -> t = 2.500000000000001 (current = 2.4138344688803177)
   -> iter = None (current = 1060)
   -> walltime = 450.321977554 (current = 420.32607873800004)

Info: evolve_until (target_time = 2.50s, niter_max = -1, max_walltime = 450.32s)      [SPH][rank=0]
---------------- t = 2.4138344688803177, dt = 0.0023061708289513387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.17 us    (0.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 325.29 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.2124565972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.838508521585069e-18,-3.8566316775762e-19,7.386336102599446e-17)
    sum a = (-1.4192542445318862e-17,1.928316122473584e-18,-3.5232725617934793e-15)
    sum e = 3.1643912931213146e-09
    sum de = -2.8345742735401378e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.86e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023063097654424432 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1525e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.399345372786925 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.32s (niter = 25) global walltime = 420.62s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.416140639709269, dt = 0.0023063097654424432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 266.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8059659099437473e-18,-3.8124165833513225e-19,6.576568918707685e-17)
    sum a = (-1.402982830992628e-17,1.9062072134146656e-18,-3.4984830965118746e-15)
    sum e = 3.1643255526759345e-09
    sum de = -2.8647931885581997e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.89e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002306455231556509 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1675e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53567464951442 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4184469494747116, dt = 0.002306455231556509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 279.21 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.212239583333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.773794373686344e-18,-3.7687057171957404e-19,5.772518064238043e-17)
    sum a = (-1.3868971468924603e-17,1.8843526435277446e-18,-3.4732616103386293e-15)
    sum e = 3.1642591289853427e-09
    sum de = -2.893466517043806e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.94e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023066069800451016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53112566111648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.420753404706268, dt = 0.0023066069800451016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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.2120225694444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7419896118944912e-18,-3.725493140418767e-19,4.974281728302553e-17)
    sum a = (-1.3709947485752596e-17,1.8627472988301297e-18,-3.4476082960443204e-15)
    sum e = 3.1641920573711725e-09
    sum de = -2.920600040348711e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 7.98e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023067646418114414 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9714e+04 | 9216 |      1 | 3.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.77277992153324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4230600116863132, dt = 0.0023067646418114414 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.77 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 294.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.2118055555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.710547392635991e-18,-3.6827731199150105e-19,4.1819582422988726e-17)
    sum a = (-1.355273761456097e-17,1.8413876854544847e-18,-3.421523425186255e-15)
    sum e = 3.164124373027755e-09
    sum de = -2.946200103263896e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.02e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002306927744441287 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1489e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37392983301899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.425366776328125, dt = 0.002306927744441287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 272.55 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 27.67 us   (8.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211588541666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6794635293781808e-18,-3.640539994980669e-19,3.395646093455762e-17)
    sum a = (-1.3397316834113765e-17,1.8202704703816322e-18,-3.395007351073898e-15)
    sum e = 3.1640561110131178e-09
    sum de = -2.9702735976257384e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.07e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002307095732854171 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52690153171071 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.427673704072566, dt = 0.002307095732854171 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 315.42 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2113715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.648733909099117e-18,-3.5987881920689267e-19,2.615443929459743e-17)
    sum a = (-1.3243670009499531e-17,1.799393664757573e-18,-3.3680605072736936e-15)
    sum e = 3.16398730623999e-09
    sum de = -2.992827961870654e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.13e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023072679913567363 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1515e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.401309104296722 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.42998079980542, dt = 0.0023072679913567363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 302.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2113715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6183544521740128e-18,-3.5575121820752177e-19,1.8414505567544332e-17)
    sum a = (-1.3091772391998362e-17,1.7787566247869524e-18,-3.3406833989246065e-15)
    sum e = 3.1639179934659504e-09
    sum de = -3.013871174770474e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.18e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023074438663657757 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.409610646157518 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.432288067796777, dt = 0.0023074438663657757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.8%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 288.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211154513888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.588321156489594e-18,-3.516706446392108e-19,1.0737649313048313e-17)
    sum a = (-1.2941604909187996e-17,1.75835326587778e-18,-3.3128766240638538e-15)
    sum e = 3.1638482072830737e-09
    sum de = -3.033411731506664e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.24e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023076226890730604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1601e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.483083569897634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.434595511663143, dt = 0.0023076226890730604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 312.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2109375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5586300669209942e-18,-3.4763656855094886e-19,3.1248613348166962e-18)
    sum a = (-1.2793150540969301e-17,1.7381823736441735e-18,-3.2846408611818248e-15)
    sum e = 3.1637779821076e-09
    sum de = -3.051458649359756e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023078037973506904 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1562e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.450507532065814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.436903134352216, dt = 0.0023078037973506904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.4%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 271.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2107204861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5292772738221095e-18,-3.436484580892577e-19,-4.4228665736056705e-18)
    sum a = (-1.2646386827947354e-17,1.7182419020788924e-18,-3.255976835399228e-15)
    sum e = 3.1637073521683324e-09
    sum de = -3.06802146195188e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.37e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002307986556241162 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1616e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.501089607089487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4392109381495666, dt = 0.002307986556241162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 317.20 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2107204861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5002589339406296e-18,-3.397057882568036e-19,-1.1904541863443957e-17)
    sum a = (-1.2501294350678428e-17,1.6985288780712705e-18,-3.226885347682791e-15)
    sum e = 3.163636351494573e-09
    sum de = -3.0831101918151966e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.44e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002308170376444565 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9853e+04 | 9216 |      1 | 3.087e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.914466234654 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 2.441518924705808, dt = 0.002308170376444565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 316.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.210286458333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.471571252429879e-18,-3.358080429336995e-19,-1.931917164959265e-17)
    sum a = (-1.2357856322240512e-17,1.6790395720020793e-18,-3.197367286635003e-15)
    sum e = 3.16356501390426e-09
    sum de = -3.0967353591812426e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.52e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023083547302934515 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.168730005253327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4438270950822525, dt = 0.0023083547302934515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 267.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.210069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4432104761148057e-18,-3.319547162166046e-19,-2.666576319317544e-17)
    sum a = (-1.2216051827078198e-17,1.659773563066251e-18,-3.1674236509656666e-15)
    sum e = 3.163493372990824e-09
    sum de = -3.1089079746162134e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.60e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023085198644359015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1722e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.603989613262826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.446135449812546, dt = 0.0023085198644359015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.67 us    (0.6%)
   LB compute        : 267.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.210069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4151731452470468e-18,-3.2814533240068216e-19,-3.394326334649484e-17)
    sum a = (-1.2075866467649495e-17,1.6407269859300932e-18,-3.1370557985599763e-15)
    sum e = 3.1634214627098996e-09
    sum de = -3.1196394249819956e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.69e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023086204480639284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1309e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.233422453834297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4484439696769815, dt = 0.0023086204480639284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 299.69 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.210069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.387456363340582e-18,-3.243795011181396e-19,-4.1150482111990826e-17)
    sum a = (-1.1937281601896864e-17,1.6218969474239743e-18,-3.1062658085571957e-15)
    sum e = 3.1633493181793334e-09
    sum de = -3.1289414333330755e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.78e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023087187035428537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1452e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.363135702947794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4507525901250453, dt = 0.0023087187035428537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 299.52 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.210069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3600565079525394e-18,-3.2065673317081694e-19,-4.828643488314466e-17)
    sum a = (-1.1800283035350464e-17,1.6032840394671817e-18,-3.0750550601527582e-15)
    sum e = 3.163276972322454e-09
    sum de = -3.136826589558955e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.89e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023088151184509297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1559e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461652016719263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.453061308828588, dt = 0.0023088151184509297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 281.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.332969981573481e-18,-3.1697653270356936e-19,-5.535014007727996e-17)
    sum a = (-1.1664850197130451e-17,1.584882020158222e-18,-3.0434250959931577e-15)
    sum e = 3.163204457747608e-09
    sum de = -3.1433079033972717e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.00e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00230891020677984 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.824840947843942 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4553701239470387, dt = 0.00230891020677984 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 325.70 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3061932347695025e-18,-3.133384258072956e-19,-6.234062147491306e-17)
    sum a = (-1.1530966269197543e-17,1.5666917505016134e-18,-3.0113776092237826e-15)
    sum e = 3.1631318067462325e-09
    sum de = -3.148398828173542e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.12e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023090044974756587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1184e+04 | 9216 |      1 | 2.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.12577803681122 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4576790341538186, dt = 0.0023090044974756587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 295.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.279722744681824e-18,-3.0974192742657077e-19,-6.925690853214055e-17)
    sum a = (-1.1398613833353902e-17,1.548709783510598e-18,-2.978914434219483e-15)
    sum e = 3.163059051281557e-09
    sum de = -3.1521132515716266e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.25e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309098522828363 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1615e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51524234883951 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4599880386512942, dt = 0.002309098522828363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 332.16 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2535550235829402e-18,-3.061865642453704e-19,-7.60980366435912e-17)
    sum a = (-1.1267774670992247e-17,1.530932835865617e-18,-2.9460375350744315e-15)
    sum e = 3.1629862229783426e-09
    sum de = -3.154465469688361e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.39e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309192807019702 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.44082661513314 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.4622971371741227, dt = 0.002309192807019702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 272.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2276866195412188e-18,-3.0267186946491325e-19,-8.286304732851359e-17)
    sum a = (-1.1138433739377815e-17,1.5133593674154565e-18,-2.9127490022323423e-15)
    sum e = 3.162913353113836e-09
    sum de = -3.155470184655109e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.54e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309287855065274 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1074e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.0293391376064 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.4646063299811423, dt = 0.002309287855065274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 271.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 5.26 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.209635416666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2021141063550986e-18,-2.9919737730752234e-19,-8.955098840383555e-17)
    sum a = (-1.1010569334750586e-17,1.4959870211209393e-18,-2.879051028376378e-15)
    sum e = 3.1628404726089397e-09
    sum de = -3.1551424868237236e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309384142393401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0427e+04 | 9216 |      1 | 3.029e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.446929899389602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4669156178362077, dt = 0.002309384142393401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 281.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209418402777778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1768341099433597e-18,-2.957626274850576e-19,-9.616091403440965e-17)
    sum a = (-1.08841699084588e-17,1.4788134726380355e-18,-2.8449459213546956e-15)
    sum e = 3.162767612020365e-09
    sum de = -3.1534978534704635e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.88e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023094821052730085 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.332774669230908 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.469225001978601, dt = 0.0023094821052730085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.02 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
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.209201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1518432667395164e-18,-2.9236716442978634e-19,-1.0269188483487714e-16)
    sum a = (-1.0759216015922833e-17,1.4618358145478653e-18,-2.8104361059244305e-15)
    sum e = 3.162694801532981e-09
    sum de = -3.150552133512441e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023095821320852704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1292e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.229924548057298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.471534484083874, dt = 0.0023095821320852704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 287.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.209201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1271382630791623e-18,-2.890105392397634e-19,-1.091429679470254e-16)
    sum a = (-1.0635690586261212e-17,1.4450525088228486e-18,-2.7755241778746153e-15)
    sum e = 3.1626220709530087e-09
    sum de = -3.146321532362501e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023096845560256355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35283380559996 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.31s (niter = 18) global walltime = 428.00s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.473844066215959, dt = 0.0023096845560256355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 317.94 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.209201388888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1027158188050814e-18,-2.8569230502334293e-19,-1.1551323729358524e-16)
    sum a = (-1.0513579580999804e-17,1.4284615760343964e-18,-2.740212888371945e-15)
    sum e = 3.1625494497018455e-09
    sum de = -3.140822604327542e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023097896489836654 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.459058812096252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4761537507719846, dt = 0.0023097896489836654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.3%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 269.81 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2087673611111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0785726804144055e-18,-2.824120191713561e-19,-1.218017736880172e-16)
    sum a = (-1.039286345439923e-17,1.4120603940478894e-18,-2.704505144119962e-15)
    sum e = 3.1624769668101752e-09
    sum de = -3.134072240418229e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023098691553612868 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1464e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.388738970895528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4784635404209685, dt = 0.0023098691553612868 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 4.92 us    (1.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 296.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 5.35 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2087673611111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.054705940228577e-18,-2.791692859937234e-19,-1.2800758801256304e-16)
    sum a = (-1.0273530121142512e-17,1.39584668762474e-18,-2.668404490890996e-15)
    sum e = 3.1624046518046086e-09
    sum de = -3.126087749568397e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309869036183173 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1473e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.397548722776012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.48077340957633, dt = 0.002309869036183173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 312.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2085503472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.031113253157981e-18,-2.7596378892055587e-19,-1.341295590279142e-16)
    sum a = (-1.0155566366311476e-17,1.3798184775872333e-18,-2.6319155241816266e-15)
    sum e = 3.1623325354930447e-09
    sum de = -3.1168870287754365e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023098706972564985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8736e+04 | 9216 |      1 | 3.207e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.927883136054188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.483083278612513, dt = 0.0023098706972564985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 320.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2085503472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0077914484752292e-18,-2.7279509798985556e-19,-1.401668012084508e-16)
    sum a = (-1.0038956930199867e-17,1.363975927987684e-18,-2.5950417117432814e-15)
    sum e = 3.1622606457038584e-09
    sum de = -3.1064881356302796e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309874512641848 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.981e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.890446800163307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4853931493097696, dt = 0.002309874512641848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.7%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 351.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2085503472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9847373941668767e-18,-2.6966278194123736e-19,-1.4611843504673136e-16)
    sum a = (-9.923687058966261e-18,1.3483146610564103e-18,-2.5577867252632858e-15)
    sum e = 3.162189009838103e-09
    sum de = -3.094909367293464e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309880811049053 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.3282e+04 | 9216 |      1 | 3.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.007252876525996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4877030238224114, dt = 0.002309880811049053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 293.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2085503472222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.96194798928394e-18,-2.665664236656354e-19,-1.5198359035056865e-16)
    sum a = (-9.809740714651157e-18,1.3328332043739936e-18,-2.520154422699542e-15)
    sum e = 3.1621176548620823e-09
    sum de = -3.0821692989979435e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309889861863327 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9694e+04 | 9216 |      1 | 3.104e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.792607138016756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4900129046334603, dt = 0.002309889861863327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.56 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 345.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2083333333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.939420169888072e-18,-2.635056059285465e-19,-1.5776140643605367e-16)
    sum a = (-9.697100066380882e-18,1.3175277710843404e-18,-2.4821488491760767e-15)
    sum e = 3.1620466073026354e-09
    sum de = -3.068286773622262e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309901862989881 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4413681992474 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.4923227944953235, dt = 0.002309901862989881 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 270.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.917150914077858e-18,-2.604799228838631e-19,-1.634510323419523e-16)
    sum a = (-9.585754906874017e-18,1.3023994351626682e-18,-2.443774240819644e-15)
    sum e = 3.161975893243599e-09
    sum de = -3.0532808807723576e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00230991693085446 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7881e+04 | 9216 |      1 | 3.305e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.157421118047868 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4946326963583134, dt = 0.00230991693085446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 304.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.895137214810715e-18,-2.574889609413686e-19,-1.690516270485738e-16)
    sum a = (-9.475686589614495e-18,1.287445397876103e-18,-2.4050350455737806e-15)
    sum e = 3.1619055383231356e-09
    sum de = -3.037170956906943e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023108664952270373 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1167e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.122486609738615 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.4969426132891677, dt = 0.0023108664952270373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 313.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.61 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8733672923703865e-18,-2.545311177560057e-19,-1.7456459979284365e-16)
    sum a = (-9.366835235012537e-18,1.272655058947853e-18,-2.3659198868465924e-15)
    sum e = 3.1618355394432714e-09
    sum de = -3.0199698538514854e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002310998340323804 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1479e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.415111291203353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.499253479784395, dt = 0.0007465202156060613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 331.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8665005311119382e-18,-2.535981442752218e-19,-1.7628561186103707e-16)
    sum a = (-9.33250267323316e-18,1.2679906414768864e-18,-2.3534106426653314e-15)
    sum e = 3.1618131928907036e-09
    sum de = -3.01370498567142e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.97e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311041992425981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1574e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.207398031279803 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1099                                                    [SPH][rank=0]
Info: time since start : 431.707748095 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 25):
   -> t = 2.500000000000001 >= 2.500000000000001
--------------------------------
tfinal = 3.13943087760614
2.524999999999995
2.549999999999995
2.574999999999995
2.5999999999999948
2.6249999999999947
2.6499999999999946
2.6749999999999945
2.6999999999999944
2.7249999999999943
2.7499999999999942
2.774999999999994
2.799999999999994
2.824999999999994
2.849999999999994
2.874999999999994
2.8999999999999937
2.9249999999999936
2.9499999999999935
2.9749999999999934
2.9999999999999933
3.0249999999999932
3.049999999999993
3.074999999999993
3.099999999999993
3.124999999999993
tfinal = 3.13943087760614
2.524999999999995
2.549999999999995
2.574999999999995
2.5999999999999948
2.6249999999999947
2.6499999999999946
2.6749999999999945
2.6999999999999944
2.7249999999999943
2.7499999999999942
2.774999999999994
2.799999999999994
2.824999999999994
2.849999999999994
2.874999999999994
2.8999999999999937
2.9249999999999936
2.9499999999999935
2.9749999999999934
2.9999999999999933
3.0249999999999932
3.049999999999993
3.074999999999993
3.099999999999993
3.124999999999993
tfinal = 3.13943087760614
2.524999999999995
2.549999999999995
2.574999999999995
2.5999999999999948
2.6249999999999947
2.6499999999999946
2.6749999999999945
2.6999999999999944
2.7249999999999943
2.7499999999999942
2.774999999999994
2.799999999999994
2.824999999999994
2.849999999999994
2.874999999999994
2.8999999999999937
2.9249999999999936
2.9499999999999935
2.9749999999999934
2.9999999999999933
3.0249999999999932
3.049999999999993
3.074999999999993
3.099999999999993
3.124999999999993
tfinal = 3.13943087760614
2.524999999999995
2.549999999999995
2.574999999999995
2.5999999999999948
2.6249999999999947
2.6499999999999946
2.6749999999999945
2.6999999999999944
2.7249999999999943
2.7499999999999942
2.774999999999994
2.799999999999994
2.824999999999994
2.849999999999994
2.874999999999994
2.8999999999999937
2.9249999999999936
2.9499999999999935
2.9749999999999934
2.9999999999999933
3.0249999999999932
3.049999999999993
3.074999999999993
3.099999999999993
3.124999999999993
tfinal = 3.13943087760614
2.524999999999995
2.549999999999995
2.574999999999995
2.5999999999999948
2.6249999999999947
2.6499999999999946
2.6749999999999945
2.6999999999999944
2.7249999999999943
2.7499999999999942
2.774999999999994
2.799999999999994
2.824999999999994
2.849999999999994
2.874999999999994
2.8999999999999937
2.9249999999999936
2.9499999999999935
2.9749999999999934
2.9999999999999933
3.0249999999999932
3.049999999999993
3.074999999999993
3.099999999999993
3.124999999999993
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[7.18773086e-14 5.71312958e-13 1.62029235e-12 ... 3.68737411e-12
 4.27181038e-12 2.11654930e-12]
(9216, 3)
[[7.18773086e-14 5.71312958e-13 1.62029235e-12 2.16826081e-12
  6.80864678e-13]
 [9.44400035e-06 9.43502148e-06 4.53166459e-06 2.21429370e-11
  3.48182526e-11]
 [1.90253272e-07 5.40619152e-13 3.52362911e-12 4.12558525e-12
  4.00456736e-12]
 ...
 [4.18360535e-05 5.28157562e-05 6.66108345e-05 8.08818633e-05
  6.59612922e-05]
 [3.33998778e-05 4.08428530e-05 4.67611220e-05 4.01055250e-05
  1.05913351e-10]
 [1.09411053e-13 6.24359382e-13 3.68737411e-12 4.27181038e-12
  2.11654930e-12]]
compute original rho
0.0006604977208951791 0.0
0.0010577071750924683 0.0
0.0017219730002615654 0.0
0.002913385188904959 0.0
0.005351638098458017 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.500000000000001 -> 2.600000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 2.600000000000001 (current = 2.500000000000001)
   -> iter = None (current = 1098)
   -> walltime = 450.321977554 (current = 437.55789647700004)

Info: evolve_until (target_time = 2.60s, niter_max = -1, max_walltime = 450.32s)      [SPH][rank=0]
---------------- t = 2.500000000000001, dt = 0.002311041992425981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.3%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 303.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8449455404331426e-18,-2.5066950568403865e-19,-1.8171977348054692e-16)
    sum a = (-9.224727827244408e-18,1.253348538487256e-18,-2.313618338325929e-15)
    sum e = 3.1617435689244756e-09
    sum de = -2.995582219853387e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.86e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00231117477464844 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.958e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.02024691507921 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 7) global walltime = 437.95s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.502311041992427, dt = 0.00231117477464844 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 397.36 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8237501183033726e-18,-2.4778971742863497e-19,-1.8702096897884308e-16)
    sum a = (-9.11875043135531e-18,1.2389488408106087e-18,-2.27368233898508e-15)
    sum e = 3.161674545227368e-09
    sum de = -2.975931048092264e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.77e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023113091111802435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1395e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34347134820505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5046222167670753, dt = 0.0023113091111802435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.8%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 303.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.4%)
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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.802796333434482e-18,-2.4494276378164073e-19,-1.9223000214615823e-16)
    sum a = (-9.013981580933096e-18,1.224713420238436e-18,-2.2333998642192825e-15)
    sum e = 3.1616059893756705e-09
    sum de = -2.955262887847333e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023114438079166466 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41121611314195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5069335258782557, dt = 0.0023114438079166466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 308.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7820820982092236e-18,-2.4212835877989284e-19,-1.9734582780951505e-16)
    sum a = (-8.910410471447075e-18,1.2106419541974588e-18,-2.1927776635851734e-15)
    sum e = 3.1615379190153933e-09
    sum de = -2.933595171578083e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.61e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311578434400841 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1550e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.486715170916447 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5092449696861725, dt = 0.002311578434400841 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 278.43 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7616046848570828e-18,-2.3934612760983635e-19,-2.0236765740096426e-16)
    sum a = (-8.808022085080514e-18,1.1967301756572143e-18,-2.1518214953061144e-15)
    sum e = 3.1614703571094734e-09
    sum de = -2.910948468503369e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311712561675608 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7947e+04 | 9216 |      1 | 3.298e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.235297698702965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5115565481205735, dt = 0.002311712561675608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 302.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7413614089252587e-18,-2.3659571053131066e-19,-2.0729471348319376e-16)
    sum a = (-8.706808021202672e-18,1.1829778971438048e-18,-2.110537341202696e-15)
    sum e = 3.1614033261255373e-09
    sum de = -2.8873435111964077e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311845775529382 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6031e+04 | 9216 |      1 | 3.540e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.506350360868524 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.513868260682249, dt = 0.002311845775529382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 281.31 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7213496005997166e-18,-2.338767438231682e-19,-2.1212623177085766e-16)
    sum a = (-8.606747876150562e-18,1.1693834138903347e-18,-2.0689314182322037e-15)
    sum e = 3.161336848065492e-09
    sum de = -2.8628011952892983e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.41e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311977684897597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1591e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.529137645642567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5161801064577785, dt = 0.002311977684897597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.7%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 324.45 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.2081163194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7015666533220817e-18,-2.311888695013721e-19,-2.168614618032728e-16)
    sum a = (-8.50783312682473e-18,1.1559435980580037e-18,-2.027010187911509e-15)
    sum e = 3.1612709444605473e-09
    sum de = -2.8373425749163772e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.37e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121079295472884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.939e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.323461550360875 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.55s (niter = 8) global walltime = 440.10s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.518492084142676, dt = 0.0023121079295472884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 329.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6820099693322022e-18,-2.285317393638018e-19,-2.2149966765722016e-16)
    sum a = (-8.41004902609575e-18,1.1426587248795754e-18,-1.984780343937764e-15)
    sum e = 3.161205636366167e-09
    sum de = -2.810988851272245e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.24e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312236186852482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.383809770140605 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5208041920722235, dt = 0.002312236186852482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 318.15 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.662676993294176e-18,-2.2590500064307576e-19,-2.260401286135148e-16)
    sum a = (-8.313385373068511e-18,1.1295249740968468e-18,-1.9422488083917226e-15)
    sum e = 3.1611409443571807e-09
    sum de = -2.783761362928593e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.13e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123621775619587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9171e+04 | 9216 |      1 | 3.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.347411254030398 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.523116428259076, dt = 0.0023123621775619587 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 296.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6435651900081045e-18,-2.233083139815107e-19,-2.3048213981963214e-16)
    sum a = (-8.217826337373611e-18,1.1165418435376895e-18,-1.8994227279669787e-15)
    sum e = 3.1610768885229557e-09
    sum de = -2.7556815731392067e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.03e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312485670418421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1509e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461209393764932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.525428790436638, dt = 0.002312485670418421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 334.79 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208333333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6246720679086996e-18,-2.2074133778115536e-19,-2.3482501295574987e-16)
    sum a = (-8.123361081351677e-18,1.1037065177326896e-18,-1.8563094830073737e-15)
    sum e = 3.161013488462829e-09
    sum de = -2.726771060733706e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.95e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023126064855476737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.396770560433282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5277412761070566, dt = 0.0023126064855476737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.3%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 254.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2087673611111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6059951551441504e-18,-2.182037397649375e-19,-2.3906807692448634e-16)
    sum a = (-8.029976408367582e-18,1.091019220041294e-18,-1.81291667652935e-15)
    sum e = 3.160950763281637e-09
    sum de = -2.6970515082485764e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.89e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312724496548091 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.094e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.909360711291665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5300538825926044, dt = 0.002312724496548091 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.6%)
   LB compute        : 262.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (52.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2084418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5875320129649165e-18,-2.1569518332489367e-19,-2.432106784885978e-16)
    sum a = (-7.937660970288956e-18,1.0784764242124114e-18,-1.769252134064489e-15)
    sum e = 3.1608887315855764e-09
    sum de = -2.6665446904825014e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.83e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023128396313138724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46429740879534 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5323666070891524, dt = 0.0023128396313138724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 297.74 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2084418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.569280226172879e-18,-2.1321534423505227e-19,-2.4725218291452104e-16)
    sum a = (-7.846400476197799e-18,1.066076862627937e-18,-1.7253239024288328e-15)
    sum e = 3.1608274114783947e-09
    sum de = -2.6352724648992567e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.79e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023128620690888073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1181e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.170717863703644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.534679446720466, dt = 0.0023128620690888073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 303.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2084418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5512381195009382e-18,-2.1076399462297052e-19,-2.511918196472934e-16)
    sum a = (-7.756190292087727e-18,1.0538191404668892e-18,-1.6811419858948173e-15)
    sum e = 3.1607668229242803e-09
    sum de = -2.603257988562535e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.76e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312843413738999 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0034e+04 | 9216 |      1 | 3.069e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.134472104656776 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.86s (niter = 6) global walltime = 442.51s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.536992308789555, dt = 0.002312843413738999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 315.24 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2086588541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5334035877133944e-18,-2.0834085121358677e-19,-2.550289444782769e-16)
    sum a = (-7.667018301309928e-18,1.041704620159892e-18,-1.6367156064474607e-15)
    sum e = 3.160706983892682e-09
    sum de = -2.5705238998401272e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.75e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023128189728770137 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1107e+04 | 9216 |      1 | 2.963e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.103695336844236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.539305152203294, dt = 0.0023128189728770137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 330.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 11.91 us   (3.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208875868055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5157742827629508e-18,-2.0594558646564088e-19,-2.587629957566074e-16)
    sum a = (-7.578871313436225e-18,1.029726193710816e-18,-1.5920535337365922e-15)
    sum e = 3.1606479108954096e-09
    sum de = -2.537092406162018e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.74e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023127890962167464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1547e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.501389674243573 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.541617971176171, dt = 0.0023127890962167464 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 302.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208875868055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.498347885853432e-18,-2.035778988628324e-19,-2.623934321648849e-16)
    sum a = (-7.491738982069622e-18,1.0178893998091843e-18,-1.5471647383980732e-15)
    sum e = 3.1605896199260105e-09
    sum de = -2.502985735309778e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.74e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023127542659671014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.45594260826155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5439307602723877, dt = 0.0023127542659671014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 298.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.2090928819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4811220938749396e-18,-2.0123745878098013e-19,-2.6591973485511316e-16)
    sum a = (-7.405611130561838e-18,1.0061876281416572e-18,-1.5020583857015414e-15)
    sum e = 3.16053212644559e-09
    sum de = -2.4682261362248022e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.76e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023127150829393667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.021e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.558150307279526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5462435145383546, dt = 0.0023127150829393667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 319.83 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2090928819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.464094621551693e-18,-1.9892396518792793e-19,-2.693414079845677e-16)
    sum a = (-7.320473328231202e-18,9.946198998233688e-19,-1.4567438269838367e-15)
    sum e = 3.1604754453798952e-09
    sum de = -2.4328358658362734e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.75e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023126722495722856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9307e+04 | 9216 |      1 | 3.145e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.47625440795148 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.548556229621294, dt = 0.0023126722495722856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 313.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2097439236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4472632157683007e-18,-1.9663711182716196e-19,-2.726579791768427e-16)
    sum a = (-7.236316170534042e-18,9.83186036254568e-19,-1.4112305943874274e-15)
    sum e = 3.1604195911175323e-09
    sum de = -2.396837176094607e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.72e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023126265504733014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1506e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461825028215543 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.23s (niter = 4) global walltime = 444.30s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5508689018708663, dt = 0.0023126265504733014 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.8%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 298.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2097439236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4306256329030009e-18,-1.9437659100403958e-19,-2.758689999232502e-16)
    sum a = (-7.153127744808063e-18,9.71882621339107e-19,-1.3655283948013863e-15)
    sum e = 3.1603645775091583e-09
    sum de = -2.360252304189043e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023125788310438093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.394640556085832 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5531815284213395, dt = 0.0023125788310438093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 270.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2101779513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4141796529690798e-18,-1.92142106154837e-19,-2.789740459213692e-16)
    sum a = (-7.07089750203856e-18,9.607104197378783e-19,-1.3196471132579373e-15)
    sum e = 3.160310417867596e-09
    sum de = -2.3231034602569058e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023125299747783043 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.033670869643526 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5554941072523834, dt = 0.0023125299747783043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.8%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 281.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
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.2101779513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3979230725287576e-18,-1.8993335277696328e-19,-2.819727173875741e-16)
    sum a = (-6.98961414776716e-18,9.49666896194316e-19,-1.2735967936638613e-15)
    sum e = 3.160257124968915e-09
    sum de = -2.285412816441908e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.70e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312480879881247 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.551887998022867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5578066372271615, dt = 0.002312480879881247 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 291.17 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2101779513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3818537084431068e-18,-1.8775003548074467e-19,-2.848646392486502e-16)
    sum a = (-6.909268391877709e-18,9.387496673906573e-19,-1.227387641911415e-15)
    sum e = 3.1602047110544423e-09
    sum de = -2.2472024986633327e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.71e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124324358490367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7722e+04 | 9216 |      1 | 3.324e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.04193074374794 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.92s (niter = 3) global walltime = 445.51s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5601191181070426, dt = 0.0023124324358490367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 344.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.2101779513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.365969391138044e-18,-1.8559186331413056e-19,-2.8764946135298623e-16)
    sum a = (-6.82984677313699e-18,9.279594036154062e-19,-1.1810300250141234e-15)
    sum e = 3.1601531878335106e-09
    sum de = -2.2084945777314958e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.73e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123855006582724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1455e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.412768685156436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.562431550542892, dt = 0.0023123855006582724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 310.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2106119791666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3502679811136537e-18,-1.8345853927106522e-19,-2.9032685863074696e-16)
    sum a = (-6.7513401313643914e-18,9.172932221003328e-19,-1.1345344645027e-15)
    sum e = 3.1601025664869403e-09
    sum de = -2.169311057390192e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.71e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123408791768493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6299e+04 | 9216 |      1 | 3.504e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.755020286778183 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.56474393604355, dt = 0.0023123408791768493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 298.83 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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.2106119791666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3347473500097408e-18,-1.8134977689873948e-19,-2.928965312226379e-16)
    sum a = (-6.673737137258554e-18,9.067488782823454e-19,-1.0879116307491136e-15)
    sum e = 3.160052857671315e-09
    sum de = -2.12967386775611e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.65e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312299303371032 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.946575044282948 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.92s (niter = 3) global walltime = 446.46s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.567056276922727, dt = 0.002312299303371032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.8%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 273.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.2106119791666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.319405394738446e-18,-1.7926529304862946e-19,-2.9535820458543137e-16)
    sum a = (-6.5970288115592105e-18,8.963263862687502e-19,-1.041172335938573e-15)
    sum e = 3.160004071523645e-09
    sum de = -2.0896048582510368e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.60e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312261414826569 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.005e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.698066666311025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.569368576226098, dt = 0.002312261414826569 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 340.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 7.22 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2108289930555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3042400258339714e-18,-1.7720480217349598e-19,-2.977116295847107e-16)
    sum a = (-6.521199742323114e-18,8.860237273910582e-19,-9.94327541572743e-16)
    sum e = 3.1599562176664933e-09
    sum de = -2.0491257889040197e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.57e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312227750028043 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1611e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.552327949168028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.5716808376409244, dt = 0.002312227750028043 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 309.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.211046006944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.289249195145638e-18,-1.751680247955096e-19,-2.999565826141635e-16)
    sum a = (-6.446246086916342e-18,8.758391370536854e-19,-9.47388343534579e-16)
    sum e = 3.1599093052134203e-09
    sum de = -2.008258325287544e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.55e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312198728759238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1597e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.539139229393708 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.61s (niter = 2) global walltime = 447.34s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5739930653909524, dt = 0.002312198728759238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 277.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211046006944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2744308480132255e-18,-1.7315468511523756e-19,-3.0209286567952357e-16)
    sum a = (-6.372154129304903e-18,8.657727068154812e-19,-9.003659859812611e-16)
    sum e = 3.1598633427745634e-09
    sum de = -1.9670240333059784e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121746458956436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1525e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47377621186963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.5763052641197115, dt = 0.0023121746458956436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 308.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2114800347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2597829724604402e-18,-1.7116450528113533e-19,-3.04120306566208e-16)
    sum a = (-6.2989147195236306e-18,8.558226665445606e-19,-8.532718365500894e-16)
    sum e = 3.159818338462249e-09
    sum de = -1.9254443740811483e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312155666762634 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9118e+04 | 9216 |      1 | 3.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.29951212587374 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 447.95s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5786174387656073, dt = 0.002312155666762634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 320.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.211697048611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.245303572320503e-18,-1.6919721309844495e-19,-3.0603875892963207e-16)
    sum a = (-6.2265174179568364e-18,8.459863119062959e-19,-8.061174000362125e-16)
    sum e = 3.159774299896564e-09
    sum de = -1.8835406966732658e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.53e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312141826130957 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9667e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.794769956980417 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 448.26s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.58092959443237, dt = 0.002312141826130957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.8%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 307.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2119140624999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2309906777640864e-18,-1.672525444158067e-19,-3.078481024877932e-16)
    sum a = (-6.1549531695228465e-18,8.362623384947636e-19,-7.589143001026047e-16)
    sum e = 3.159731234210859e-09
    sum de = -1.8413342352118994e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.54e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312133030819757 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1619e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.557588245489168 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 448.55s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.583241736258501, dt = 0.002312133030819757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 314.39 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.2119140624999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2168423406823401e-18,-1.653302362658139e-19,-3.0954824317801026e-16)
    sum a = (-6.084211368533453e-18,8.2665176210863545e-19,-7.1167430240970205e-16)
    sum e = 3.1596891480569383e-09
    sum de = -1.7988461039056736e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.56e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121290657778936 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1636e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57286608539303 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 448.85s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5855538692893205, dt = 0.0023121290657778936 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 280.39 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2119140624999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.202856640963161e-18,-1.6343002118731996e-19,-3.111391134388719e-16)
    sum a = (-6.0142834164110944e-18,8.171506359085169e-19,-6.644092961853815e-16)
    sum e = 3.1596480476099887e-09
    sum de = -1.756097290998452e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.59e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312129603417501 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1666e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.599976323324697 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 449.14s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.5878659983550985, dt = 0.002312129603417501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 316.85 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2119140624999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1890316794314883e-18,-1.6155164685529132e-19,-3.126206724441045e-16)
    sum a = (-5.945158388495659e-18,8.07758552632178e-19,-6.171313043033333e-16)
    sum e = 3.159607938573246e-09
    sum de = -1.7131086565003643e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.63e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312134215889106 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1526e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.473492705268633 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 449.43s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.590178127958516, dt = 0.002312134215889106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 302.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212131076388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1753655883904473e-18,-1.5969485851847105e-19,-3.139929064261919e-16)
    sum a = (-5.876827944835097e-18,7.984745617942208e-19,-5.698524739024199e-16)
    sum e = 3.159568826182173e-09
    sum de = -1.6699009262780224e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.68e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121423899081918 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8720e+04 | 9216 |      1 | 3.209e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.938843070479336 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 449.75s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.592490262174405, dt = 0.0023121423899081918 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.9%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 296.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212131076388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1618565199314634e-18,-1.5785940462755684e-19,-3.1525582898596376e-16)
    sum a = (-5.8092824030705024e-18,7.892977672038359e-19,-5.22585075241068e-16)
    sum e = 3.159530715208357e-09
    sum de = -1.626494689444787e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.73e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312153543675411 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.44790228530494 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 450.04s (max_walltime = 450.32s)  [SPH][rank=0]
---------------- t = 2.594802404564313, dt = 0.002312153543675411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.2%)
   patch tree reduce : 2.21 us    (0.4%)
   gen split merge   : 1.32 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.3%)
   LB compute        : 493.51 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 5.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.212131076388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.14850265431436e-18,-1.5604503601105542e-19,-3.1640948144216533e-16)
    sum a = (-5.74251417044741e-18,7.802255219030028e-19,-4.753414971106078e-16)
    sum e = 3.1594936099629497e-09
    sum de = -1.582910393215975e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.79e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312167045383894 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1448e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40354652640644 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 450.34s > 450.32s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 14):
   -> walltime = 450.33850925300004 >= 450.321977554
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000014.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (58.1%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000014.sham              [Shamrock Dump][rank=0]
              - took 1.40 ms, bandwidth = 2.48 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 450.33850925300004 -> 480.33850925300004

[Simulation] Evolve until next trigger(s) :
   -> t = 2.600000000000001 (current = 2.5971145581079886)
   -> iter = None (current = 1140)
   -> walltime = 480.33850925300004 (current = 450.342416854)

Info: evolve_until (target_time = 2.60s, niter_max = -1, max_walltime = 480.34s)      [SPH][rank=0]
---------------- t = 2.5971145581079886, dt = 0.002312167045383894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (1.0%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 299.15 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212131076388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1353021916312746e-18,-1.5425151241233156e-19,-3.1745393318365047e-16)
    sum a = (-5.676510446002069e-18,7.712572068801564e-19,-4.2813424866847215e-16)
    sum e = 3.159457514299799e-09
    sum de = -1.5391683336860144e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.86e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312182232763544 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.639301198213204 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.28s (niter = 25) global walltime = 450.63s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.5994267251533727, dt = 0.00057327484662828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 290.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212348090277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1321242967808216e-18,-1.538197381871682e-19,-3.1764479625661445e-16)
    sum a = (-5.660621574656967e-18,7.6909848268774955e-19,-4.166934687399542e-16)
    sum e = 3.159449195108402e-09
    sum de = -1.5282332585894445e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.88e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121869222045848 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1489e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.051613237536623 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1143                                                    [SPH][rank=0]
Info: time since start : 450.92666254000005 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 26):
   -> t = 2.600000000000001 >= 2.600000000000001
--------------------------------
tfinal = 3.767317053127367
3.149999999999993
3.1749999999999927
3.1999999999999926
3.2249999999999925
3.2499999999999925
3.2749999999999924
3.2999999999999923
3.324999999999992
3.349999999999992
3.374999999999992
3.399999999999992
3.424999999999992
3.4499999999999917
3.4749999999999917
3.4999999999999916
3.5249999999999915
3.5499999999999914
3.5749999999999913
3.599999999999991
3.624999999999991
3.649999999999991
3.674999999999991
3.699999999999991
3.7249999999999908
3.7499999999999907
tfinal = 3.767317053127367
3.149999999999993
3.1749999999999927
3.1999999999999926
3.2249999999999925
3.2499999999999925
3.2749999999999924
3.2999999999999923
3.324999999999992
3.349999999999992
3.374999999999992
3.399999999999992
3.424999999999992
3.4499999999999917
3.4749999999999917
3.4999999999999916
3.5249999999999915
3.5499999999999914
3.5749999999999913
3.599999999999991
3.624999999999991
3.649999999999991
3.674999999999991
3.699999999999991
3.7249999999999908
3.7499999999999907
tfinal = 3.767317053127367
3.149999999999993
3.1749999999999927
3.1999999999999926
3.2249999999999925
3.2499999999999925
3.2749999999999924
3.2999999999999923
3.324999999999992
3.349999999999992
3.374999999999992
3.399999999999992
3.424999999999992
3.4499999999999917
3.4749999999999917
3.4999999999999916
3.5249999999999915
3.5499999999999914
3.5749999999999913
3.599999999999991
3.624999999999991
3.649999999999991
3.674999999999991
3.699999999999991
3.7249999999999908
3.7499999999999907
tfinal = 3.767317053127367
3.149999999999993
3.1749999999999927
3.1999999999999926
3.2249999999999925
3.2499999999999925
3.2749999999999924
3.2999999999999923
3.324999999999992
3.349999999999992
3.374999999999992
3.399999999999992
3.424999999999992
3.4499999999999917
3.4749999999999917
3.4999999999999916
3.5249999999999915
3.5499999999999914
3.5749999999999913
3.599999999999991
3.624999999999991
3.649999999999991
3.674999999999991
3.699999999999991
3.7249999999999908
3.7499999999999907
tfinal = 3.767317053127367
3.149999999999993
3.1749999999999927
3.1999999999999926
3.2249999999999925
3.2499999999999925
3.2749999999999924
3.2999999999999923
3.324999999999992
3.349999999999992
3.374999999999992
3.399999999999992
3.424999999999992
3.4499999999999917
3.4749999999999917
3.4999999999999916
3.5249999999999915
3.5499999999999914
3.5749999999999913
3.599999999999991
3.624999999999991
3.649999999999991
3.674999999999991
3.699999999999991
3.7249999999999908
3.7499999999999907
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[4.30753169e-14 3.07894056e-13 9.33121714e-13 ... 1.35795121e-12
 1.43841394e-12 1.98463137e-13]
(9216, 3)
[[4.30753169e-14 3.07894056e-13 9.33121714e-13 8.27891136e-13
  2.00463286e-13]
 [9.18445113e-06 8.62822323e-06 2.30179641e-06 1.12822605e-11
  1.14998107e-11]
 [3.17281086e-08 3.44816870e-13 2.09701120e-12 2.23989945e-12
  4.78975464e-13]
 ...
 [4.18802122e-05 5.28881567e-05 6.65886928e-05 7.89102704e-05
  4.97075120e-05]
 [3.32856108e-05 4.04189567e-05 4.50079882e-05 3.37116339e-05
  5.29171008e-11]
 [6.50786444e-14 3.67522935e-13 1.35795121e-12 1.43841394e-12
  1.98463137e-13]]
compute original rho
0.0006613748591310581 0.0
0.0010614515845170686 0.0
0.001737633142651064 0.0
0.002976559787479273 0.0
0.005604051986547079 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.600000000000001 -> 2.700000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 2.700000000000001 (current = 2.600000000000001)
   -> iter = None (current = 1142)
   -> walltime = 480.33850925300004 (current = 456.99877911500005)

Info: evolve_until (target_time = 2.70s, niter_max = -1, max_walltime = 480.34s)      [SPH][rank=0]
---------------- t = 2.600000000000001, dt = 0.0023121869222045848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.2%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 301.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212348090277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1190404359078834e-18,-1.5204205754670135e-19,-3.186049900905501e-16)
    sum a = (-5.595202999968237e-18,7.602105127583004e-19,-3.692898192480539e-16)
    sum e = 3.1594138920641454e-09
    sum de = -1.4843908456701875e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 8.96e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312202530844814 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4623e+04 | 9216 |      1 | 3.743e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.239148729929394 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.62s (niter = 15) global walltime = 457.37s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.6023121869222057, dt = 0.002312202530844814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 320.77 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1061788233003763e-18,-1.50294572195101e-19,-3.194040598954786e-16)
    sum a = (-5.530893554493912e-18,7.514735591908858e-19,-3.222119538707232e-16)
    sum e = 3.1593800768006973e-09
    sum de = -1.4403669930330116e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.04e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122190714663583 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1565e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50936443513195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6046243894530505, dt = 0.0023122190714663583 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.64 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.13 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0934645339885742e-18,-1.4856710146733685e-19,-3.2009465774050997e-16)
    sum a = (-5.467322499827749e-18,7.428360071711655e-19,-2.7521025483568318e-16)
    sum e = 3.1593472813196642e-09
    sum de = -1.3962506506190617e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.09e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122351721257075 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1165e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.14866831163537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6069366085245167, dt = 0.0023122351721257075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 317.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0808962937485528e-18,-1.4685947590793387e-19,-3.2067666945887763e-16)
    sum a = (-5.40448138135911e-18,7.342975219397275e-19,-2.2829918968434513e-16)
    sum e = 3.159315506752539e-09
    sum de = -1.3520609734465355e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.10e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312250263326965 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55698398678337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6092488436966423, dt = 0.002312250263326965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 269.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0684724319609983e-18,-1.4517146776053391e-19,-3.211503196132288e-16)
    sum a = (-5.342362092473716e-18,7.258584413765144e-19,-1.8149177122595638e-16)
    sum e = 3.1592847546013296e-09
    sum de = -1.307817386156066e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.12e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122638382770387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1798e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.72025198733461 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.611561093959969, dt = 0.0023122638382770387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 270.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0561912988952248e-18,-1.4350284810133076e-19,-3.2151586123967293e-16)
    sum a = (-5.280957009882998e-18,7.175140945624389e-19,-1.348010948288057e-16)
    sum e = 3.1592550259209884e-09
    sum de = -1.2635391221005856e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.15e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312275470633033 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1661e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59739285861244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.613873357798246, dt = 0.002312275470633033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 315.02 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0440512639926626e-18,-1.4185340509736402e-19,-3.2177357792345866e-16)
    sum a = (-5.220257129813579e-18,7.092668726468491e-19,-8.824033717349012e-17)
    sum e = 3.159226321327217e-09
    sum de = -1.2192452200057842e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.18e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312284825480791 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1541e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48928241818099 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.616185633268879, dt = 0.002312284825480791 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 293.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0320507200657108e-18,-1.4022291303943593e-19,-3.219237840672422e-16)
    sum a = (-5.1602530177158415e-18,7.011146744652592e-19,-4.1822725758369684e-17)
    sum e = 3.1591986409991603e-09
    sum de = -1.1749545147778654e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.22e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312291667472766 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1742e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6704880655448 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.6184979180943597, dt = 0.002312291667472766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 268.11 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0201880833241444e-18,-1.386111564739566e-19,-3.2196682503847887e-16)
    sum a = (-5.1009412040551045e-18,6.930557052989535e-19,4.438445824428115e-18)
    sum e = 3.159171984682462e-09
    sum de = -1.1306856331857335e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122958659119374 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1685e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61872280766473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6208102097618324, dt = 0.0023122958659119374 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.72 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 324.80 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0084617710516585e-18,-1.370179239629834e-19,-3.2190307737758713e-16)
    sum a = (-5.0423090085934116e-18,6.85088606101917e-19,5.052984475574541e-17)
    sum e = 3.15914635169256e-09
    sum de = -1.086456983138623e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.34e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312297396680379 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1657e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.593596991757337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6231225056277445, dt = 0.002312297396680379 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 310.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.968702406851208e-19,-1.3544300653715976e-19,-3.217329488733347e-16)
    sum a = (-4.984351555343532e-18,6.772150468420697e-19,9.643809310698727e-17)
    sum e = 3.159121740918481e-09
    sum de = -1.042286748169722e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.40e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122963410334807 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.453596869595497 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.625434803024425, dt = 0.0023122963410334807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 270.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.854119502423716e-19,-1.3388618761175848e-19,-3.214568786619734e-16)
    sum a = (-4.927060164308027e-18,6.694314960956775e-19,1.4214977946550147e-16)
    sum e = 3.159098150827002e-09
    sum de = -9.981928764270744e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122928812916712 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1774e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69912187508387 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6277470993654584, dt = 0.0023122928812916712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 302.01 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.740853814203117e-19,-1.32347264884861e-19,-3.2107533725639357e-16)
    sum a = (-4.870426896045462e-18,6.617360200977666e-19,1.8765147610687946e-16)
    sum e = 3.1590755794673804e-09
    sum de = -9.541930771007778e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.36e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312287293685403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.121e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.67068931712013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.63005939224675, dt = 0.002312287293685403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 310.93 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.628890316681388e-19,-1.308260381941366e-19,-3.205888265083255e-16)
    sum a = (-4.814445349828588e-18,6.541306378007104e-19,2.3292974862376013e-16)
    sum e = 3.1590540244763816e-09
    sum de = -9.103048123514861e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00231227993855082 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1690e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62393640565959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6323716795404355, dt = 0.00231227993855082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 296.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.518214089057723e-19,-1.2932229802831717e-19,-3.1999787953591166e-16)
    sum a = (-4.759106822148156e-18,6.4661181413208735e-19,2.7797115777254996e-16)
    sum e = 3.159033483083844e-09
    sum de = -8.665452921302923e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.25e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312271248230198 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1718e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.64916921645463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6346839594789864, dt = 0.002312271248230198 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 269.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.408810420517925e-19,-1.2783584898234048e-19,-3.193030606466835e-16)
    sum a = (-4.7044050159740336e-18,6.391788432776508e-19,3.2276226747493846e-16)
    sum e = 3.1590139521186104e-09
    sum de = -8.229314678359235e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.21e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122617130657067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1853e+04 | 9216 |      1 | 2.893e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.7707451800915 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 4.47s (niter = 15) global walltime = 461.77s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.636996230727217, dt = 0.0023122617130657067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.66 us   (8.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 268.35 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.30066469060674e-19,-1.2636649356712293e-19,-3.1850496521550437e-16)
    sum a = (-4.650331805517626e-18,6.318330112810491e-19,3.672896554618908e-16)
    sum e = 3.1589954280148977e-09
    sum de = -7.794800268523358e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.17e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122518659285107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1767e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.692736071336565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6393084924402825, dt = 0.0023122518659285107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 311.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.193762464560283e-19,-1.2491402935915965e-19,-3.1760421953730153e-16)
    sum a = (-4.596881291092677e-18,6.245703892250313e-19,4.115399168127256e-16)
    sum e = 3.158977906819011e-09
    sum de = -7.362073883180618e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.15e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122422657559823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8383e+04 | 9216 |      1 | 3.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.636420025116713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.641620744306211, dt = 0.0023122422657559823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.13 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.088089387982625e-19,-1.2347826765053524e-19,-3.1660148067285313e-16)
    sum a = (-4.544043899316771e-18,6.173909554749467e-19,4.554996685443105e-16)
    sum e = 3.1589613841963476e-09
    sum de = -6.931296993071035e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.13e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312233480594943 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.625705469208402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6439329865719667, dt = 0.002312233480594943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.9%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 264.39 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 19.61 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.983631347537717e-19,-1.2205901596251001e-19,-3.1549743629089536e-16)
    sum a = (-4.4918156903596056e-18,6.102950095070877e-19,4.991555670005413e-16)
    sum e = 3.158945855438653e-09
    sum de = -6.502628279821706e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.13e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122260706519822 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1866e+04 | 9216 |      1 | 2.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.78205914327449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6462452200525615, dt = 0.0023122260706519822 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.66 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 264.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2129991319444438
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.88037423283839e-19,-1.2065607977138451e-19,-3.14292804460429e-16)
    sum a = (-4.440186496085035e-18,6.032803852376117e-19,5.424943113407165e-16)
    sum e = 3.1589313154715746e-09
    sum de = -6.076223629891434e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.13e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312220571841223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1874e+04 | 9216 |      1 | 2.891e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.789416972414685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6485574461232133, dt = 0.002312220571841223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 324.59 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 8.62 us    (2.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.778304219934875e-19,-1.192692720477938e-19,-3.129883334665553e-16)
    sum a = (-4.389152071693625e-18,5.963461006897315e-19,5.855026509914871e-16)
    sum e = 3.1589177588622218e-09
    sum de = -5.6522360825495106e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.14e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312217480305649 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1796e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.718926600814008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6508696666950544, dt = 0.002312217480305649 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 302.54 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.213216145833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.67740749297582e-19,-1.1789840701454637e-19,-3.1158480161816064e-16)
    sum a = (-4.3387039917015225e-18,5.894927669834593e-19,6.281673779847705e-16)
    sum e = 3.158905179826923e-09
    sum de = -5.230815808564074e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.14e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312217238309203 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9545e+04 | 9216 |      1 | 3.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.6855303653453 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.65318188417536, dt = 0.002312217238309203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 299.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.2134331597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.577670465902386e-19,-1.1654329485349573e-19,-3.1008301711476367e-16)
    sum a = (-4.2888354047894286e-18,5.827154339716527e-19,6.704753422472759e-16)
    sum e = 3.1588935722389802e-09
    sum de = -4.8121101151435725e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.14e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312220221961031 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1697e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62864235226588 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.655494101413669, dt = 0.002312220221961031 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 264.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.479079681394124e-19,-1.1520376379792774e-19,-3.084838178677559e-16)
    sum a = (-4.239539609661176e-18,5.760185683657123e-19,7.124134640599501e-16)
    sum e = 3.158882929636264e-09
    sum de = -4.396263415764143e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.15e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312226730994588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1773e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69751729805963 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.65780632163563, dt = 0.002312226730994588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 284.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.381621826317571e-19,-1.1387962051524807e-19,-3.067880713258612e-16)
    sum a = (-4.190810738607141e-18,5.693980605657144e-19,7.539687273688279e-16)
    sum e = 3.158873245228864e-09
    sum de = -3.983417221232644e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.16e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122369809346704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69018250470746 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6601185483666248, dt = 0.0023122369809346704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 273.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 5.37 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.2852837117443e-19,-1.1257069140174484e-19,-3.049966743567866e-16)
    sum a = (-4.142641579861454e-18,5.628537485527513e-19,7.951281881530186e-16)
    sum e = 3.1588645119065574e-09
    sum de = -3.57371010161394e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.19e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122510978029758 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59449890616027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6624307853475595, dt = 0.0023122510978029758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.49 us   (6.5%)
   patch tree reduce : 1.92 us    (0.5%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.4%)
   LB compute        : 318.57 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.190052329683832e-19,-1.112767981481531e-19,-3.031105531170513e-16)
    sum a = (-4.0950254731613836e-18,5.563846276062542e-19,8.358789945270831e-16)
    sum e = 3.158856722246229e-09
    sum de = -3.167277709307955e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.23e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023122691154762263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.64318353217104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6647430364453624, dt = 0.0023122691154762263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 19.49 us   (6.3%)
   LB compute        : 269.04 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.095914821526226e-19,-1.0999776621933327e-19,-3.0113066288535086e-16)
    sum a = (-4.047957635259749e-18,5.499888992267801e-19,8.762083769451923e-16)
    sum e = 3.1588498685189965e-09
    sum de = -2.7642527725146232e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.27e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00231229097572504 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1047e+04 | 9216 |      1 | 2.968e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.042339299597604 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.667055305560839, dt = 0.00231229097572504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 269.31 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.002858430639949e-19,-1.087334262610404e-19,-2.990579879698303e-16)
    sum a = (-4.0014296281190556e-18,5.43667191188907e-19,9.161036615681588e-16)
    sum e = 3.1588439426971775e-09
    sum de = -2.3647650616384266e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.33e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123165308808497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0610e+04 | 9216 |      1 | 3.011e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.64809569873968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.669367596536564, dt = 0.0023123165308808497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.54 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.4%)
   LB compute        : 341.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.910870642773736e-19,-1.0748360444399539e-19,-2.9689354157586506e-16)
    sum a = (-3.9554353887896646e-18,5.374173415812369e-19,9.555522656559316e-16)
    sum e = 3.1588389364611866e-09
    sum de = -1.9689414107267472e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.39e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123455490084086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1315e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.284928791182363 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.27s (niter = 11) global walltime = 466.21s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.671679913067445, dt = 0.0023123455490084086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 306.67 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.819939075099505e-19,-1.0624813564306429e-19,-2.9463836571791237e-16)
    sum a = (-3.909968829765919e-18,5.312409544796428e-19,9.945417161685985e-16)
    sum e = 3.1588348412061054e-09
    sum de = -1.5769056983213068e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.46e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312377721386012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8311e+04 | 9216 |      1 | 3.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.572259145867434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6739922586164533, dt = 0.002312377721386012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 296.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.73005149843899e-19,-1.0502684681515234e-19,-2.922935310692043e-16)
    sum a = (-3.8650248341756645e-18,5.251345760049118e-19,1.0330596535778521e-15)
    sum e = 3.1588316480481863e-09
    sum de = -1.1887788504199358e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.41e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124126720345654 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1456e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.413573658284538 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6763046363378393, dt = 0.0023124126720345654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 323.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.64119581195619e-19,-1.0381957916421272e-19,-2.898601368252767e-16)
    sum a = (-3.820597957061926e-18,5.190975531959561e-19,1.0710938458247134e-15)
    sum e = 3.1588293478311777e-09
    sum de = -8.046788263001563e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.37e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124499689842863 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9065e+04 | 9216 |      1 | 3.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.254206782347634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.678617049009874, dt = 0.0023124499689842863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 305.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.553360061862947e-19,-1.0262617205775103e-19,-2.8733931052056313e-16)
    sum a = (-3.77668070914509e-18,5.131316125918628e-19,1.108632188025734e-15)
    sum e = 3.158827931132547e-09
    sum de = -4.247206049328904e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.34e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124891369165766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6054526984653 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.680929498978858, dt = 0.0023124891369165766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 265.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.466532513204352e-19,-1.0144645879386322e-19,-2.847322078600903e-16)
    sum a = (-3.73326570993278e-18,5.072320512661014e-19,1.1456627137882438e-15)
    sum e = 3.1588273882696772e-09
    sum de = -4.9016188280504625e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.31e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312480158931508 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67959144587937 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.6832419881157747, dt = 0.002312480158931508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.3%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.380703467336646e-19,-1.0028031606703434e-19,-2.82040069221055e-16)
    sum a = (-3.690351553267334e-18,5.014016232892289e-19,1.1821728205805118e-15)
    sum e = 3.15882770930832e-09
    sum de = 3.223174298529506e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.30e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124570796587505 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1667e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.605644113999006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6855544682747063, dt = 0.0023124570796587505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 304.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.295861863365897e-19,-9.912758765158396e-20,-2.792641308639986e-16)
    sum a = (-3.6479305935675356e-18,4.956379589308836e-19,1.2181506588326675e-15)
    sum e = 3.158828883985504e-09
    sum de = 6.891722681545062e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312433464631539 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1614e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55720140973003 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.687866925354365, dt = 0.002312433464631539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 297.60 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.211996377683843e-19,-9.798812196686658e-20,-2.76405639912227e-16)
    sum a = (-3.605998259489586e-18,4.899407196520263e-19,1.2535847801345275e-15)
    sum e = 3.1588309017994593e-09
    sum de = 1.0514456482270038e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312409659257794 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7866e+04 | 9216 |      1 | 3.307e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.171444839761847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.690179358818997, dt = 0.002312409659257794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 299.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.129095754330394e-19,-9.686176566621017e-20,-2.734658688339634e-16)
    sum a = (-3.564547219994254e-18,4.843088339383227e-19,1.2884639227419718e-15)
    sum e = 3.158833752019741e-09
    sum de = 1.4090380648069499e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.28e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312381186655597 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.009e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.668177402614955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.6924917684782548, dt = 0.002312381186655597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 281.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.047149094467937e-19,-9.57483705260702e-20,-2.7044612166605475e-16)
    sum a = (-3.523573555413646e-18,4.787415521962232e-19,1.3227769663373678e-15)
    sum e = 3.1588374236833553e-09
    sum de = 1.7618524825873673e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312299783387782 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.040e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.382714521353083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.69480414966491, dt = 0.002312299783387782 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 266.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.966147243763005e-19,-9.464781349510752e-20,-2.673477923552191e-16)
    sum a = (-3.483073594192847e-18,4.732392260850789e-19,1.3565122982651067e-15)
    sum e = 3.158841905515316e-09
    sum de = 2.109787746678099e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312214714887069 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1818e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.73908173412768 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.69s (niter = 9) global walltime = 469.53s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.697116449448298, dt = 0.002312214714887069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 319.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.886079345762624e-19,-9.355994426960739e-20,-2.6417224155767843e-16)
    sum a = (-3.4430399299817694e-18,4.677991859812113e-19,1.3896593026796338e-15)
    sum e = 3.158847186042784e-09
    sum de = 2.4527537841286422e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023121262832233626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1680e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61342210899841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.699428664163185, dt = 0.0005713358368160115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.8%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 306.31 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.866870855218154e-19,-9.329896304970816e-20,-2.6333995790144137e-16)
    sum a = (-3.4334351190374728e-18,4.664941762572183e-19,1.3975781014682698e-15)
    sum e = 3.158848983053554e-09
    sum de = 2.534378706813582e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002312102567949071 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2088e+04 | 9216 |      1 | 2.872e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.161378921430176 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1187                                                    [SPH][rank=0]
Info: time since start : 470.11375924000004 (s)                                       [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 27):
   -> t = 2.700000000000001 >= 2.700000000000001
--------------------------------
tfinal = 4.395203228648595
3.7749999999999906
3.7999999999999905
3.8249999999999904
3.8499999999999903
3.8749999999999902
3.89999999999999
3.92499999999999
3.94999999999999
3.97499999999999
3.99999999999999
4.02499999999999
4.04999999999999
4.07499999999999
4.099999999999991
4.124999999999991
4.1499999999999915
4.174999999999992
4.199999999999992
4.2249999999999925
4.249999999999993
4.274999999999993
4.299999999999994
4.324999999999994
4.349999999999994
4.374999999999995
tfinal = 4.395203228648595
3.7749999999999906
3.7999999999999905
3.8249999999999904
3.8499999999999903
3.8749999999999902
3.89999999999999
3.92499999999999
3.94999999999999
3.97499999999999
3.99999999999999
4.02499999999999
4.04999999999999
4.07499999999999
4.099999999999991
4.124999999999991
4.1499999999999915
4.174999999999992
4.199999999999992
4.2249999999999925
4.249999999999993
4.274999999999993
4.299999999999994
4.324999999999994
4.349999999999994
4.374999999999995
tfinal = 4.395203228648595
3.7749999999999906
3.7999999999999905
3.8249999999999904
3.8499999999999903
3.8749999999999902
3.89999999999999
3.92499999999999
3.94999999999999
3.97499999999999
3.99999999999999
4.02499999999999
4.04999999999999
4.07499999999999
4.099999999999991
4.124999999999991
4.1499999999999915
4.174999999999992
4.199999999999992
4.2249999999999925
4.249999999999993
4.274999999999993
4.299999999999994
4.324999999999994
4.349999999999994
4.374999999999995
tfinal = 4.395203228648595
3.7749999999999906
3.7999999999999905
3.8249999999999904
3.8499999999999903
3.8749999999999902
3.89999999999999
3.92499999999999
3.94999999999999
3.97499999999999
3.99999999999999
4.02499999999999
4.04999999999999
4.07499999999999
4.099999999999991
4.124999999999991
4.1499999999999915
4.174999999999992
4.199999999999992
4.2249999999999925
4.249999999999993
4.274999999999993
4.299999999999994
4.324999999999994
4.349999999999994
4.374999999999995
tfinal = 4.395203228648595
3.7749999999999906
3.7999999999999905
3.8249999999999904
3.8499999999999903
3.8749999999999902
3.89999999999999
3.92499999999999
3.94999999999999
3.97499999999999
3.99999999999999
4.02499999999999
4.04999999999999
4.07499999999999
4.099999999999991
4.124999999999991
4.1499999999999915
4.174999999999992
4.199999999999992
4.2249999999999925
4.249999999999993
4.274999999999993
4.299999999999994
4.324999999999994
4.349999999999994
4.374999999999995
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[2.97335374e-14 2.51853829e-13 8.70728510e-13 ... 1.24120036e-12
 8.74761079e-13 1.61806518e-14]
(9216, 3)
[[2.97335374e-14 2.51853829e-13 8.70728510e-13 7.05795078e-13
  3.81186733e-14]
 [8.92645758e-06 7.82943588e-06 1.91282998e-07 1.08065797e-11
  3.27112540e-12]
 [3.59443661e-14 2.91617791e-13 1.96417646e-12 1.42318591e-12
  1.31122903e-13]
 ...
 [4.19426499e-05 5.29791110e-05 6.65385820e-05 7.64569425e-05
  3.41178333e-05]
 [3.31814233e-05 3.99935881e-05 4.31849881e-05 2.74882088e-05
  4.14254203e-11]
 [4.96635905e-14 3.26084453e-13 1.24120036e-12 8.74761079e-13
  1.61806518e-14]]
compute original rho
0.0006622638757891164 0.0
0.001065237916216847 0.0
0.0017533640745656211 0.0
0.003039331921164061 0.0
0.005853093516945296 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.700000000000001 -> 2.800000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 2.800000000000001 (current = 2.700000000000001)
   -> iter = None (current = 1186)
   -> walltime = 480.33850925300004 (current = 476.01924313700005)

Info: evolve_until (target_time = 2.80s, niter_max = -1, max_walltime = 480.34s)      [SPH][rank=0]
---------------- t = 2.700000000000001, dt = 0.002312102567949071 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.2%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 321.82 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.78751375220933e-19,-9.222075352295635e-20,-2.6010635183737825e-16)
    sum a = (-3.393756669898782e-18,4.611036074455254e-19,1.4301584307453064e-15)
    sum e = 3.15885486693763e-09
    sum de = 2.8734035591065387e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.29e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023120118580950704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.100e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.851513974757673 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.93s (niter = 3) global walltime = 476.33s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.70231210256795, dt = 0.0023120118580950704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 296.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.709508398147726e-19,-9.116090822860788e-20,-2.5676214405494406e-16)
    sum a = (-3.354753602759865e-18,4.558048641481971e-19,1.461944850178248e-15)
    sum e = 3.1588619021862613e-09
    sum de = 3.204877460669189e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.31e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311917268794431 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1594e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53375079068377 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7046241144260454, dt = 0.002311917268794431 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 310.31 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.63240014790376e-19,-9.011325053112913e-20,-2.5334550322078436e-16)
    sum a = (-3.3162001008879116e-18,4.505669306910096e-19,1.4931111781632915e-15)
    sum e = 3.1588696947625825e-09
    sum de = 3.531125278698152e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.33e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023118206903003126 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0105e+04 | 9216 |      1 | 3.061e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.187690579760027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.70693603169484, dt = 0.0023118206903003126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.0%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.56 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.55618121071453e-19,-8.907767532553184e-20,-2.4985767092012623e-16)
    sum a = (-3.2780906478123232e-18,4.453888750218111e-19,1.5236467809123169e-15)
    sum e = 3.1588782351986895e-09
    sum de = 3.852057086391368e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.35e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023117226243658797 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8572e+04 | 9216 |      1 | 3.225e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.802489801909374 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.62s (niter = 2) global walltime = 477.25s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.70924785238514, dt = 0.0023117226243658797 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 328.81 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.480841358986561e-19,-8.805404517698827e-20,-2.4630012576602043e-16)
    sum a = (-3.2404210000034442e-18,4.402695991754809e-19,1.5535423912305892e-15)
    sum e = 3.158887511032929e-09
    sum de = 4.167599899415636e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.39e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023116236078708223 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1193e+04 | 9216 |      1 | 2.954e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.168248891293544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.711559575009506, dt = 0.0023116236078708223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 314.79 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.406370430001725e-19,-8.704222472258842e-20,-2.426743653192112e-16)
    sum a = (-3.2031850186715245e-18,4.352112252337415e-19,1.5827890138816581e-15)
    sum e = 3.1588975096569696e-09
    sum de = 4.477683904766835e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.43e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311524194087584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38701824286023 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.61s (niter = 2) global walltime = 477.84s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.713871198617377, dt = 0.002311524194087584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 273.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.332758412843154e-19,-8.604207008068237e-20,-2.3898190662772844e-16)
    sum a = (-3.1663799308093614e-18,4.3021046169279403e-19,1.6113779369910517e-15)
    sum e = 3.1589082183080675e-09
    sum de = 4.7822425372289e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.48e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311424942528104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1325e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.28477653664684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7161827228114643, dt = 0.002311424942528104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 346.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.259995296770032e-19,-8.505345053614592e-20,-2.352242854787699e-16)
    sum a = (-3.1299985596349153e-18,4.252671931722365e-19,1.639300751866689e-15)
    sum e = 3.1589196240774074e-09
    sum de = 5.081212460154011e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.49e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023113264086839416 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.379561402684967 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 478.43s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.7184941477539923, dt = 0.0023113264086839416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 271.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.188071276978947e-19,-8.407623214989363e-20,-2.314030556137541e-16)
    sum a = (-3.094035991223845e-18,4.2038101507043227e-19,1.6665493430858572e-15)
    sum e = 3.1589317139182437e-09
    sum de = 5.374533552205594e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.51e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311229133953333 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50763814912347 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 478.72s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.720805474162676, dt = 0.002311229133953333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.0%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 267.76 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.2136501736111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.116976622432479e-19,-8.311028216679303e-20,-2.275197880244091e-16)
    sum a = (-3.0584881228422738e-18,4.155517945073617e-19,1.6931159115790729e-15)
    sum e = 3.158944474653889e-09
    sum de = 5.6621489065684694e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.54e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002311133635970004 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8517e+04 | 9216 |      1 | 3.232e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.74618826100295 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 479.04s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.7231167032966295, dt = 0.002311133635970004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213650173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.046701670533616e-19,-8.215546702517123e-20,-2.235760701781242e-16)
    sum a = (-3.0233511879769726e-18,4.10778325673099e-19,1.7189929777129735e-15)
    sum e = 3.158957892985619e-09
    sum de = 5.944004771674013e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.58e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023110403995731574 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1541e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.474371720367483 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 479.34s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.7254278369325995, dt = 0.0023110403995731574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 301.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.213650173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.977236833639695e-19,-8.121165788486306e-20,-2.1957350528121434e-16)
    sum a = (-2.9886179564711896e-18,4.060578262384612e-19,1.744173388650015e-15)
    sum e = 3.1589719555002756e-09
    sum de = 6.220050512560343e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.62e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023109498684421603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1603e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52947840757983 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 479.63s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.7277388773321727, dt = 0.0023109498684421603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 325.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2134331597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.908572721198816e-19,-8.027873324599196e-20,-2.155137115444289e-16)
    sum a = (-2.954286326432021e-18,4.0139386011987033e-19,1.7686503237101856e-15)
    sum e = 3.1589866486776275e-09
    sum de = 6.490238667863533e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.67e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310862437824021 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1377e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32448442297888 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 479.92s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.730049827200615, dt = 0.002310862437824021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 290.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2134331597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.84069992038844e-19,-7.935655631302082e-20,-2.113983214611014e-16)
    sum a = (-2.9203502001768736e-18,3.9678196721889756e-19,1.7924172908798147e-15)
    sum e = 3.159001958897877e-09
    sum de = 6.7545248531294445e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.73e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310778448298783 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0641e+04 | 9216 |      1 | 3.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.658889470463464 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 480.22s (max_walltime = 480.34s)  [SPH][rank=0]
---------------- t = 2.7323606896384387, dt = 0.002310778448298783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.33 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2134331597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.773609206630155e-19,-7.844500988505483e-20,-2.0722898111914519e-16)
    sum a = (-2.886804439836034e-18,3.9222492444450973e-19,1.8154681375654232e-15)
    sum e = 3.1590178724486063e-09
    sum de = 7.012867753689278e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.80e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023106981807667825 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.494375078390057 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 480.52s > 480.34s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 15):
   -> walltime = 480.51713791000003 >= 480.33850925300004
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000015.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (54.0%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000015.sham              [Shamrock Dump][rank=0]
              - took 1.40 ms, bandwidth = 2.48 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 480.51713791000003 -> 510.51713791000003

[Simulation] Evolve until next trigger(s) :
   -> t = 2.800000000000001 (current = 2.7346714680867374)
   -> iter = None (current = 1201)
   -> walltime = 510.51713791000003 (current = 480.52115374600004)

Info: evolve_until (target_time = 2.80s, niter_max = -1, max_walltime = 510.52s)      [SPH][rank=0]
---------------- t = 2.7346714680867374, dt = 0.0023106981807667825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (1.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 268.76 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 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.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.707291451998365e-19,-7.754396161133214e-20,-2.030073494962888e-16)
    sum a = (-2.8536458313831037e-18,3.877199398132454e-19,1.8377970379714625e-15)
    sum e = 3.1590343755316965e-09
    sum de = 7.265229097725596e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.87e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310621852735222 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.007923102412466 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.14s (niter = 24) global walltime = 480.82s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.736982166267504, dt = 0.002310621852735222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 256.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.641737586048616e-19,-7.665329227900808e-20,-1.9873509782494906e-16)
    sum a = (-2.8208690513279742e-18,3.832670120685299e-19,1.8593985165145925e-15)
    sum e = 3.1590514542700186e-09
    sum de = 7.51157361479827e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 9.95e-02 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023105496159595493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1638e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.555682000563152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.739292788120239, dt = 0.0023105496159595493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 311.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
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.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.576938681423115e-19,-7.577287933024067e-20,-1.9441390887237885e-16)
    sum a = (-2.7884689690364136e-18,3.7886485034507726e-19,1.8802674456687996e-15)
    sum e = 3.159069094713915e-09
    sum de = 7.751869011271244e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023104815554639024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.505726351658634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7416033377361986, dt = 0.0023104815554639024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.7%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 324.21 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.512885929599503e-19,-7.490260481371135e-20,-1.900454762714035e-16)
    sum a = (-2.7564427752441708e-18,3.745130738347451e-19,1.9003990395053965e-15)
    sum e = 3.159087282847524e-09
    sum de = 7.986085915043286e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023104176899334766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.069e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.103517411408692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7439138192916626, dt = 0.0023104176899334766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 313.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.449570567829066e-19,-7.404235049971863e-20,-1.8563150387457233e-16)
    sum a = (-2.7247843378827128e-18,3.702114649586599e-19,1.9197888668247065e-15)
    sum e = 3.159106004594874e-09
    sum de = 8.214197877366196e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310357973441555 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.423085145241185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.746224236981596, dt = 0.002310357973441555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 303.63 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.38698401628163e-19,-7.319199874613618e-20,-1.8117370505912088e-16)
    sum a = (-2.6934914188441597e-18,3.6596079467709217e-19,1.9384328445573355e-15)
    sum e = 3.1591252458259587e-09
    sum de = 8.436181331016584e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023103022984469783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39294790078528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7485345949550375, dt = 0.0023103022984469783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 308.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.4%)
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.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3251177121160885e-19,-7.23514289746122e-20,-1.7667380207163327e-16)
    sum a = (-2.662557795315372e-18,3.617572129531098e-19,1.9563272375376986e-15)
    sum e = 3.159144992362641e-09
    sum de = 8.652015541920868e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.00231025049995855 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8055e+04 | 9216 |      1 | 3.285e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.31891301147968 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7508448972534847, dt = 0.00231025049995855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 299.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.263963287513482e-19,-7.152053494572019e-20,-1.7213352536464105e-16)
    sum a = (-2.6319821755915134e-18,3.576027969596455e-19,1.973468671008955e-15)
    sum e = 3.15916522998439e-09
    sum de = 8.861682578220453e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310202360759249 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.330405743517435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7531551477534433, dt = 0.002310202360759249 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 301.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.203512359778414e-19,-7.069919896836924e-20,-1.6755461287936783e-16)
    sum a = (-2.601756006996857e-18,3.5349587185212546e-19,1.9898541220143274e-15)
    sum e = 3.1591859444339663e-09
    sum de = 9.06516729116826e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023101576175471724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1380e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.317646377535876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7554653501142026, dt = 0.0023101576175471724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 2.73 us    (0.9%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 276.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2132161458333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.143756838990783e-19,-6.988731169690669e-20,-1.6293880936741664e-16)
    sum a = (-2.5718780718577398e-18,3.4943650675976117e-19,2.005480936010679e-15)
    sum e = 3.159207121423096e-09
    sum de = 9.262457283194334e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023101159678321726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1615e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.529691949713182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7577755077317496, dt = 0.0023101159678321726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 315.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.084688585671715e-19,-6.908476179243561e-20,-1.5828786563221245e-16)
    sum a = (-2.542344438495087e-18,3.4542449094001747e-19,2.020346821064839e-15)
    sum e = 3.1592287466380734e-09
    sum de = 9.453542872833612e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310077077419641 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8277e+04 | 9216 |      1 | 3.259e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.516628126237375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.760085623699582, dt = 0.002310077077419641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.94 us    (0.9%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 302.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.026299599995967e-19,-6.829143859661196e-20,-1.5360353779334942e-16)
    sum a = (-2.513149675564082e-18,3.4145722383900984e-19,2.034449844020729e-15)
    sum e = 3.1592508057453497e-09
    sum de = 9.638417070390896e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023100405883031447 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.959e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.102957184740717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7623957007770015, dt = 0.0023100405883031447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.9%)
   patch tree reduce : 23.67 us   (6.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 320.87 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.968582033851538e-19,-6.750724100358987e-20,-1.4888758654366674e-16)
    sum a = (-2.4842901687312704e-18,3.375362836556461e-19,2.0477884399328182e-15)
    sum e = 3.1592732843971202e-09
    sum de = 9.817075540255232e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023100061267785337 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9019e+04 | 9216 |      1 | 3.176e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.185525590694493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7647057413653044, dt = 0.0023100061267785337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.13 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.2127821180555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.911528111748078e-19,-6.673205884687198e-20,-1.4414177635211843e-16)
    sum a = (-2.4557647143191618e-18,3.336611332587245e-19,2.060361400346379e-15)
    sum e = 3.1592961682369197e-09
    sum de = 9.989516581044484e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023099733115939836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1413e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.345584510844986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.767015747492083, dt = 0.0023099733115939836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 280.22 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.855130072147396e-19,-6.596578639868435e-20,-1.393678746967124e-16)
    sum a = (-2.4275650952273355e-18,3.298298670962332e-19,2.072167886373822e-15)
    sum e = 3.1593194429052413e-09
    sum de = 1.0155741099462739e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023099417619549594 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1490e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41406900865653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.769325720803677, dt = 0.0023099417619549594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 322.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.799380433478777e-19,-6.520832362545083e-20,-1.3456765122518028e-16)
    sum a = (-2.3996897889472377e-18,3.260410650157127e-19,2.083207422596801e-15)
    sum e = 3.159343094045235e-09
    sum de = 1.031575257645503e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023099111052105933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1383e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.317780538872867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.771635662565632, dt = 0.0023099111052105933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 294.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.744271685122847e-19,-6.445957373131065e-20,-1.2974287692200276e-16)
    sum a = (-2.372135922366018e-18,3.2229865664990235e-19,2.093479905144486e-15)
    sum e = 3.159367107308382e-09
    sum de = 1.0469557023784779e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002309880984054383 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.994e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.774571190954934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7739455736708427, dt = 0.002309880984054383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 311.43 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.689796402417856e-19,-6.371942455597195e-20,-1.2489532323793547e-16)
    sum a = (-2.3448981523103484e-18,3.1859720769162716e-19,2.1029855839643044e-15)
    sum e = 3.15939146836019e-09
    sum de = 1.061716299655583e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002309851063098104 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1087e+04 | 9216 |      1 | 2.965e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.049798414222913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.776255454654897, dt = 0.002309851063098104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 269.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.635947328304032e-19,-6.298778742289482e-20,-1.2002676125816105e-16)
    sum a = (-2.317973843963229e-18,3.149388634898721e-19,2.1117250769426873e-15)
    sum e = 3.1594161628860684e-09
    sum de = 1.0758581530304985e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023098210346913194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.373471601916684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7785653057179953, dt = 0.0023098210346913194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 287.85 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.582717236882891e-19,-6.226456010609943e-20,-1.1513896079183373e-16)
    sum a = (-2.2913577874120645e-18,3.1132316630870805e-19,2.119699352233908e-15)
    sum e = 3.159441176597084e-09
    sum de = 1.0893826140494944e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309790623879584 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1511e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.431542901649223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7808751267526866, dt = 0.002309790623879584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 332.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5300990610112845e-19,-6.154964465162969e-20,-1.102336895288406e-16)
    sum a = (-2.2650487849431442e-18,3.077475687797083e-19,2.1269097366071504e-15)
    sum e = 3.159466495235882e-09
    sum de = 1.1022912759143025e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023097595924187497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.303401676654424 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.783184917376566, dt = 0.0023097595924187497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1.90 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 339.78 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
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.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.478085721266402e-19,-6.08429511390248e-20,-1.0531271212309637e-16)
    sum a = (-2.2390430957997186e-18,3.0421466155710575e-19,2.1333579061624193e-15)
    sum e = 3.1594921045824533e-09
    sum de = 1.1145859716531617e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309727741779259 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.217402219799453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.785494676968985, dt = 0.002309727741779259 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 321.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212999131944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.426670256180604e-19,-6.014437817635364e-20,-1.0037778932354821e-16)
    sum a = (-2.2133348831396672e-18,3.007219881034559e-19,2.1390458884461253e-15)
    sum e = 3.1595179904600003e-09
    sum de = 1.1262687719087907e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023096949151221375 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9900e+04 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.977296621348838 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.787804404710764, dt = 0.0023096949151221375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 299.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3758458672668445e-19,-5.945383574137502e-20,-9.543067706614988e-17)
    sum a = (-2.1879231271877326e-18,2.972689869015362e-19,2.1439760589958098e-15)
    sum e = 3.159544138740819e-09
    sum de = 1.1373419811944606e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023096609982278015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.384177327701487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.790114099625886, dt = 0.0023096609982278015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 284.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3256057271654693e-19,-5.877123281385026e-20,-9.047312558726132e-17)
    sum a = (-2.16280248705927e-18,2.9385639677983657e-19,2.1481511281881086e-15)
    sum e = 3.1595705353520705e-09
    sum de = 1.1478081340662895e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023096259194019006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1597e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.507017292434803 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.38s (niter = 18) global walltime = 487.99s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.792423760624114, dt = 0.0023096259194019006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 290.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2759431810482657e-19,-5.809647546152237e-20,-8.550687856488224e-17)
    sum a = (-2.1379730158187005e-18,2.90483252207073e-19,2.15157414830782e-15)
    sum e = 3.159597166281569e-09
    sum de = 1.1576699932649174e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023095896483988233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1561e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.474216497371028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7947333865435158, dt = 0.0023095896483988233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.6%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.36 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 370.28 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2268515114563483e-19,-5.742947372431876e-20,-8.053367223650584e-17)
    sum a = (-2.113425900236461e-18,2.871474352871709e-19,2.1542485080062697e-15)
    sum e = 3.159624017583485e-09
    sum de = 1.1669305430553528e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.20e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023095521944268235 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8792e+04 | 9216 |      1 | 3.201e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.97607269940021 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.7970429761919147, dt = 0.0023095521944268235 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 288.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.178324307306179e-19,-5.677014394869717e-20,-7.555523453058154e-17)
    sum a = (-2.089161523345556e-18,2.838506314014457e-19,2.156177929249543e-15)
    sum e = 3.1596510753838994e-09
    sum de = 1.1755929869632188e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023095136033199487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1557e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.469539640178393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.7993525283863416, dt = 0.0006474716136595227 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 316.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1650777789480924e-19,-5.659016573420915e-20,-7.41569424776451e-17)
    sum a = (-2.0825397346096328e-18,2.829505664777199e-19,2.1565760323017904e-15)
    sum e = 3.1596587868595596e-09
    sum de = 1.1776405083870168e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002309502038676925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1608e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.994244252505552 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1231                                                    [SPH][rank=0]
Info: time since start : 489.189764489 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 28):
   -> t = 2.800000000000001 >= 2.800000000000001
--------------------------------
tfinal = 5.023089404169823
4.399999999999995
4.424999999999995
4.449999999999996
4.474999999999996
4.4999999999999964
4.524999999999997
4.549999999999997
4.5749999999999975
4.599999999999998
4.624999999999998
4.649999999999999
4.674999999999999
4.699999999999999
4.725
4.75
4.775
4.800000000000001
4.825000000000001
4.850000000000001
4.875000000000002
4.900000000000002
4.9250000000000025
4.950000000000003
4.975000000000003
5.0000000000000036
tfinal = 5.023089404169823
4.399999999999995
4.424999999999995
4.449999999999996
4.474999999999996
4.4999999999999964
4.524999999999997
4.549999999999997
4.5749999999999975
4.599999999999998
4.624999999999998
4.649999999999999
4.674999999999999
4.699999999999999
4.725
4.75
4.775
4.800000000000001
4.825000000000001
4.850000000000001
4.875000000000002
4.900000000000002
4.9250000000000025
4.950000000000003
4.975000000000003
5.0000000000000036
tfinal = 5.023089404169823
4.399999999999995
4.424999999999995
4.449999999999996
4.474999999999996
4.4999999999999964
4.524999999999997
4.549999999999997
4.5749999999999975
4.599999999999998
4.624999999999998
4.649999999999999
4.674999999999999
4.699999999999999
4.725
4.75
4.775
4.800000000000001
4.825000000000001
4.850000000000001
4.875000000000002
4.900000000000002
4.9250000000000025
4.950000000000003
4.975000000000003
5.0000000000000036
tfinal = 5.023089404169823
4.399999999999995
4.424999999999995
4.449999999999996
4.474999999999996
4.4999999999999964
4.524999999999997
4.549999999999997
4.5749999999999975
4.599999999999998
4.624999999999998
4.649999999999999
4.674999999999999
4.699999999999999
4.725
4.75
4.775
4.800000000000001
4.825000000000001
4.850000000000001
4.875000000000002
4.900000000000002
4.9250000000000025
4.950000000000003
4.975000000000003
5.0000000000000036
tfinal = 5.023089404169823
4.399999999999995
4.424999999999995
4.449999999999996
4.474999999999996
4.4999999999999964
4.524999999999997
4.549999999999997
4.5749999999999975
4.599999999999998
4.624999999999998
4.649999999999999
4.674999999999999
4.699999999999999
4.725
4.75
4.775
4.800000000000001
4.825000000000001
4.850000000000001
4.875000000000002
4.900000000000002
4.9250000000000025
4.950000000000003
4.975000000000003
5.0000000000000036
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.23192995e-14 2.94178514e-13 6.26373566e-13 ... 1.39583950e-12
 1.02303285e-12 1.26400626e-14]
(9216, 3)
[[3.23192995e-14 2.94178514e-13 6.26373566e-13 8.17914700e-13
  7.61812048e-15]
 [8.67374206e-06 7.04180899e-06 2.43622206e-12 1.24216489e-11
  1.95922817e-12]
 [4.93475973e-14 3.72783609e-13 2.05678942e-12 1.42908741e-12
  2.32540531e-14]
 ...
 [4.20166468e-05 5.30797333e-05 6.64466060e-05 7.35272848e-05
  1.97968286e-05]
 [3.30904903e-05 3.95706392e-05 4.13106140e-05 2.15140176e-05
  4.72412465e-11]
 [5.74278322e-14 3.56580033e-13 1.39583950e-12 1.02303285e-12
  1.26400626e-14]]
compute original rho
0.0006631630212205197 0.0
0.0010690578705879789 0.0
0.0017691343041175988 0.0
0.003101673405528671 0.0
0.0061001236263694475 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.800000000000001 -> 2.9000000000000012

[Simulation] Evolve until next trigger(s) :
   -> t = 2.9000000000000012 (current = 2.800000000000001)
   -> iter = None (current = 1230)
   -> walltime = 510.51713791000003 (current = 495.351161696)

Info: evolve_until (target_time = 2.90s, niter_max = -1, max_walltime = 510.52s)      [SPH][rank=0]
---------------- t = 2.800000000000001, dt = 0.002309502038676925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 336.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 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.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1170029175130144e-19,-5.593698221736406e-20,-6.917619685425151e-17)
    sum a = (-2.0585013277448446e-18,2.796845592519668e-19,2.1575670472723468e-15)
    sum e = 3.159685991298105e-09
    sum de = 1.185819722222523e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.26e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309462669894278 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.412965947742837 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.50s (niter = 9) global walltime = 495.74s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.802309502038678, dt = 0.002309462669894278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.3%)
   LB compute        : 372.58 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.069740181294245e-19,-5.529483259074799e-20,-6.419223192579856e-17)
    sum a = (-2.034869857335758e-18,2.7647398307320655e-19,2.1578133799557217e-15)
    sum e = 3.159713471801041e-09
    sum de = 1.1931298199134655e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.28e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023094218240892273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1060e+04 | 9216 |      1 | 2.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.02070189659425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.804618964708572, dt = 0.0023094218240892273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 265.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (54.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212782118055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.023019333677684e-19,-5.466004489012334e-20,-5.920864616580536e-17)
    sum a = (-2.011509571196125e-18,2.733002347166776e-19,2.1573293251921346e-15)
    sum e = 3.1597411106052314e-09
    sum de = 1.1998553964759824e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.30e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023093802040259894 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1415e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.339652165237165 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8069283865326615, dt = 0.0023093802040259894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 274.30 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9768356724333096e-19,-5.403255543840405e-20,-5.422711147132212e-17)
    sum a = (-1.98841773182853e-18,2.7016311635219467e-19,2.1561199220545674e-15)
    sum e = 3.1597688974814156e-09
    sum de = 1.2059989585398584e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.31e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309337961708516 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1614e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51925965281436 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8092377667366875, dt = 0.002309337961708516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.6%)
   LB compute        : 266.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.2127821180555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.93118302643713e-19,-5.3412280002174975e-20,-4.924929837136553e-17)
    sum a = (-1.9655903438052913e-18,2.6706228719494883e-19,2.15419056304247e-15)
    sum e = 3.1597968190049576e-09
    sum de = 1.2115648099999757e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.32e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023092952652747785 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8041e+04 | 9216 |      1 | 3.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.295414059946676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.811547104698396, dt = 0.0023092952652747785 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.886055321350014e-19,-5.2799134801356146e-20,-4.427686407489117e-17)
    sum a = (-1.9430272471255023e-18,2.6399576568611594e-19,2.1515469354862114e-15)
    sum e = 3.159824861874036e-09
    sum de = 1.2165574395437354e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.33e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309252289996732 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1642e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.543020396116475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.813856399963671, dt = 0.002309252289996732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 338.06 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8414464455537123e-19,-5.219304265398488e-20,-3.9311451845543054e-17)
    sum a = (-1.92072305361902e-18,2.609661539915612e-19,2.148195021141349e-15)
    sum e = 3.1598530128954196e-09
    sum de = 1.220981524867664e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.34e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023092092130951158 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.390955954187756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8161656522536678, dt = 0.0023092092130951158 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 299.96 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.797350462030036e-19,-5.159391522352266e-20,-3.4354690319256593e-17)
    sum a = (-1.8986750270097916e-18,2.5796969569246587e-19,2.1441410885300973e-15)
    sum e = 3.159881258988944e-09
    sum de = 1.224841924771747e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.36e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023091662087441254 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1523e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.434619176078414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.818474861466763, dt = 0.0023091662087441254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.6%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 343.89 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7537614663305076e-19,-5.100168008912637e-20,-2.940819286004729e-17)
    sum a = (-1.8768803151429156e-18,2.550081894643254e-19,2.1393916878251376e-15)
    sum e = 3.159909587191594e-09
    sum de = 1.228143681808677e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.37e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023091234434152196 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0920e+04 | 9216 |      1 | 2.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.890577253599012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.820784027675507, dt = 0.0023091234434152196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 309.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212565104166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.71067362139074e-19,-5.041625399392205e-20,-2.447355693616876e-17)
    sum a = (-1.8553369122831595e-18,2.520818917584036e-19,2.1339536438344198e-15)
    sum e = 3.159937984661704e-09
    sum de = 1.2308920128779346e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.38e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023090810716621317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6814e+04 | 9216 |      1 | 3.437e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.186578181261403 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.81s (niter = 9) global walltime = 498.47s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.8230931511189223, dt = 0.0023090810716621317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 297.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212022569444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.668081120163297e-19,-4.9837555157125826e-20,-1.955236352686862e-17)
    sum a = (-1.8340397778705235e-18,2.491873564528003e-19,2.1278340547072196e-15)
    sum e = 3.159966438682717e-09
    sum de = 1.2330923049715851e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.40e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002309039232437363 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8314e+04 | 9216 |      1 | 3.255e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.53882672297454 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8254022321905845, dt = 0.002309039232437363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.212022569444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6259783066097656e-19,-4.926551357971669e-20,-1.4646176528387404e-17)
    sum a = (-1.8129901291418398e-18,2.463274282608989e-19,2.121040265717141e-15)
    sum e = 3.159994936666877e-09
    sum de = 1.2347501111465163e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.41e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002308998046011276 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.445600990729805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8277112714230217, dt = 0.002308998046011276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 293.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.212022569444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.584359421128857e-19,-4.8700045904690836e-20,-9.756542262226341e-18)
    sum a = (-1.79218048333914e-18,2.4349982029163707e-19,2.1135798735931142e-15)
    sum e = 3.160023466158769e-09
    sum de = 1.2358711455770028e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.43e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023089576115483033 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.449982246094645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.830020269469033, dt = 0.0023089576115483033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 267.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.54321898104985e-19,-4.814107958741824e-20,-4.88498894058156e-18)
    sum a = (-1.7716089912026464e-18,2.407052247085912e-19,2.105460736048746e-15)
    sum e = 3.1600520148386957e-09
    sum de = 1.2364612784829375e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.45e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002308918005378341 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.975e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.9362930239217 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 2.8323292270805815, dt = 0.002308918005378341 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 289.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.211805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.502551475137508e-19,-4.758853728473817e-20,-3.302610947246225e-20)
    sum a = (-1.751276574180099e-18,2.3794225907717267e-19,2.0966909435587247e-15)
    sum e = 3.16008057052591e-09
    sum de = 1.2365265310729029e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.47e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023088792799796434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1380e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.302553103807156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8346381450859597, dt = 0.0023088792799796434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 314.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (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.211805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4623513425538046e-19,-4.7042346931213506e-20,4.79785580029777e-18)
    sum a = (-1.7311752205583155e-18,2.3521220626548323e-19,2.0872788239129683e-15)
    sum e = 3.160109121181711e-09
    sum de = 1.2360730729305074e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.48e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023088414636708845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1519e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.427045439175245 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8369470243659394, dt = 0.0023088414636708845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 312.28 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.211805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4226133097343665e-19,-4.6502430978472324e-20,9.606185971229882e-18)
    sum a = (-1.7113069078634168e-18,2.3251215063299166e-19,2.0772329389649962e-15)
    sum e = 3.1601376549125097e-09
    sum de = 1.2351072172121123e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.47e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023088045609904228 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.987e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.82251820195661 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8392558658296103, dt = 0.0023088045609904228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 313.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211805555555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.383331941058502e-19,-4.5968722852264757e-20,1.4390513677375143e-17)
    sum a = (-1.6916657608793414e-18,2.298433052605917e-19,2.0665620676491927e-15)
    sum e = 3.160166159972747e-09
    sum de = 1.2336354150080745e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.46e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023087685537351646 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1336e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.261543849765996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.841564670390601, dt = 0.0023087685537351646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 302.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211588541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.344502031974415e-19,-4.54411487948491e-20,1.9149408715364657e-17)
    sum a = (-1.6722510219696913e-18,2.272054948660211e-19,2.0552752184271772e-15)
    sum e = 3.1601946247677002e-09
    sum de = 1.231664252465938e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.45e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002308733402587989 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.379518006080175 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.14s (niter = 7) global walltime = 501.15s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.843873438944336, dt = 0.002308733402587989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 266.22 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 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.211588541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3061183351055415e-19,-4.491963683321579e-20,2.3881461902285825e-17)
    sum a = (-1.6530590685078394e-18,2.2459839265624267e-19,2.0433816079978684e-15)
    sum e = 3.1602230378562795e-09
    sum de = 1.2292004444388422e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.44e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002308699049301055 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.372158834862798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.846182172346924, dt = 0.002308699049301055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 317.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.211588541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.268175721382591e-19,-4.440411630209518e-20,2.858528549021552e-17)
    sum a = (-1.6340875893525928e-18,2.2202055259770526e-19,2.0308906531114493e-15)
    sum e = 3.1602513879536415e-09
    sum de = 1.2262508311485136e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.43e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023086654193300847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.288024472309736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.848490871396225, dt = 0.0023086654193300847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 264.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.2113715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2306691030645968e-19,-4.389452096751386e-20,3.3259513583763796e-17)
    sum a = (-1.6153345001843884e-18,2.1947174492870275e-19,2.017811968240596e-15)
    sum e = 3.160279663933841e-09
    sum de = 1.2228223745662197e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.41e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023086324248456796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1443e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35592634263809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.850799536815555, dt = 0.0023086324248456796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 262.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.2113715277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.193593441133118e-19,-4.3390783491869364e-20,3.79028025670364e-17)
    sum a = (-1.596797022494382e-18,2.1695380077120494e-19,2.0041553693094117e-15)
    sum e = 3.1603078548324007e-09
    sum de = 1.218922152800244e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.39e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023085940776295124 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1249e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.180891105269392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8531081692404006, dt = 0.0023085940776295124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.73 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 272.25 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211154513888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1569438606506364e-19,-4.2892831729675696e-20,4.251381974988631e-17)
    sum a = (-1.5784717574791822e-18,2.1446455929213494e-19,1.9899308835066096e-15)
    sum e = 3.160335949777002e-09
    sum de = 1.2145573677168612e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.37e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002308536226265403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.507835668379588 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.85541676331803, dt = 0.002308536226265403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 262.95 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211154513888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1207157958278115e-19,-4.2400605910561644e-20,4.709122800016847e-17)
    sum a = (-1.5603576508528416e-18,2.1200359491540247e-19,1.975148819433822e-15)
    sum e = 3.1603639378924214e-09
    sum de = 1.2097353620657764e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.36e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.002308477811622471 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1609e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.504192665300458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.8577252995442954, dt = 0.002308477811622471 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.2%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 303.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211154513888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.084904372167256e-19,-4.191404085356778e-20,5.1633752759687743e-17)
    sum a = (-1.5424522903111045e-18,2.0957003342154915e-19,1.9598195432292767e-15)
    sum e = 3.160391808707444e-09
    sum de = 1.2044635588124992e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.34e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.52e-02 |
+-------------+----------+
Info: cfl dt = 0.0023084188094852904 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1395e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31072595420881 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.81s (niter = 6) global walltime = 503.21s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.860033777355918, dt = 0.0023084188094852904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.1%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 266.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.211154513888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0495047834799507e-19,-4.143307437667882e-20,5.61401434089162e-17)
    sum a = (-1.5247532102839334e-18,2.0716587900094694e-19,1.9439535877760793e-15)
    sum e = 3.160419551923352e-09
    sum de = 1.198749475931454e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.33e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023083592308862514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.550699282933465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.862342196165403, dt = 0.0023083592308862514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.61 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 284.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.210720486111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.014512286295576e-19,-4.095763608943206e-20,6.060917398257604e-17)
    sum a = (-1.507256600598182e-18,2.0478904567803867e-19,1.927561643097566e-15)
    sum e = 3.1604471574170793e-09
    sum de = 1.1926007274281856e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.31e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023082991211265773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7846e+04 | 9216 |      1 | 3.310e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.108399938152765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.864650555396289, dt = 0.0023082991211265773 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 306.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2105034722222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9799222378018256e-19,-4.0487664962680974e-20,6.50396435811623e-17)
    sum a = (-1.4899616132629124e-18,2.0243814250169657e-19,1.9106545361470727e-15)
    sum e = 3.1604746152438553e-09
    sum de = 1.186025018035054e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.30e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023082385577158832 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.302806701024416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.866958854517416, dt = 0.0023082385577158832 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.210286458333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9457299789455494e-19,-4.002310266858445e-20,6.943037672174509e-17)
    sum a = (-1.472865251240824e-18,2.001158380579897e-19,1.893243227928565e-15)
    sum e = 3.1605019156395963e-09
    sum de = 1.1790301378278001e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.29e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002308177647304392 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1582e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.476532299882614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.869267093075132, dt = 0.002308177647304392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 301.71 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.210286458333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.911930945521879e-19,-3.95638801013128e-20,7.378022369488071e-17)
    sum a = (-1.45596496991431e-18,1.9781952900590255e-19,1.8753388168507517e-15)
    sum e = 3.160529049023129e-09
    sum de = 1.171623957744382e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.28e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002308116521705801 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.319680311257386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.871575270722436, dt = 0.002308116521705801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.2%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 305.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.210069444444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8785206212122223e-19,-3.910993965786605e-20,7.808806092124132e-17)
    sum a = (-1.4392605929436933e-18,1.9554954741124425e-19,1.8569525133783807e-15)
    sum e = 3.160556005998266e-09
    sum de = 1.1638144255063067e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.27e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023080553331356617 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.86289143472153 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 4) global walltime = 505.02s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.873883387244142, dt = 0.0023080553331356617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 286.50 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2094184027777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8454944683956365e-19,-3.866122011241402e-20,8.235279120764797e-17)
    sum a = (-1.4227476516204776e-18,1.933056714962893e-19,1.8380956343764453e-15)
    sum e = 3.1605827773557003e-09
    sum de = 1.1556095605058508e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.27e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002307994248812821 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7957e+04 | 9216 |      1 | 3.297e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.20546971937883 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8761914425772774, dt = 0.002307994248812821 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.2%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 298.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.2094184027777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.812848098039482e-19,-3.821766128828936e-20,8.657334400021652e-17)
    sum a = (-1.4064243323784276e-18,1.910883584693595e-19,1.8187795953794035e-15)
    sum e = 3.1606093540747195e-09
    sum de = 1.1470174507474398e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.26e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023079334450896473 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.004e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.657216598340938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.87849943682609, dt = 0.0023079334450896473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 318.28 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.2094184027777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.780577131190124e-19,-3.7779200858508576e-20,9.074867560433523e-17)
    sum a = (-1.3902886100747241e-18,1.8889601336529803e-19,1.79901590676693e-15)
    sum e = 3.1606357273247773e-09
    sum de = 1.1380462480043487e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.25e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002307873101290444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.195109275022084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.88080737027118, dt = 0.002307873101290444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.89 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2093098958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7486772350636946e-19,-3.734578266892867e-20,9.48777693853822e-17)
    sum a = (-1.3743388820837265e-18,1.8672966690982732e-19,1.7788161686729355e-15)
    sum e = 3.160661888466854e-09
    sum de = 1.1287041621067762e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.25e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023078133934448975 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9244e+04 | 9216 |      1 | 3.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.36371408621635 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 506.26s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.8831152433724703, dt = 0.0023078133934448975 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.5%)
   LB compute        : 310.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2093098958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7171441078175506e-19,-3.691734531794206e-20,9.895963594819331e-17)
    sum a = (-1.358572354073873e-18,1.8458705873859427e-19,1.7581920662066577e-15)
    sum e = 3.1606878290545998e-09
    sum de = 1.118999457233824e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.24e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307754488108437 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1338e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.25094401395599 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8854230567659154, dt = 0.002307754488108437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.6%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 333.19 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.2093098958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6859735247200406e-19,-3.649383602514919e-20,1.0299331328947076e-16)
    sum a = (-1.3429864059351482e-18,1.8246928110326604e-19,1.7371553641696078e-15)
    sum e = 3.1607135408353387e-09
    sum de = 1.1089404482705375e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.24e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023076965364540545 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1185e+04 | 9216 |      1 | 2.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.111974090995993 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.887730811254024, dt = 0.0023076965364540545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 285.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2093098958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6551613162319694e-19,-3.6075195955045065e-20,1.0697786693522741e-16)
    sum a = (-1.3275807616447528e-18,1.803764842162301e-19,1.7157178889917387e-15)
    sum e = 3.160739015750928e-09
    sum de = 1.0985354961996004e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023076396688161615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1490e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38656348598956 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 507.15s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.8900385077904778, dt = 0.0023076396688161615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 283.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2093098958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.624703294504682e-19,-3.566136687813042e-20,1.1091239000277474e-16)
    sum a = (-1.3123513053991135e-18,1.7830621823663882e-19,1.6938915281458254e-15)
    sum e = 3.1607642459384405e-09
    sum de = 1.0877930036230895e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307583989851044 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1532e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.424063229801455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.892346147459294, dt = 0.002307583989851044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 318.74 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 5.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209092881944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.594595406017576e-19,-3.525229895930884e-20,1.14796003285633e-16)
    sum a = (-1.2972982705657116e-18,1.7626255563714584e-19,1.6716882265714153e-15)
    sum e = 3.1607892237306983e-09
    sum de = 1.0767214108380036e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023075295744611666 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8112e+04 | 9216 |      1 | 3.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.33992665837266 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.61s (niter = 2) global walltime = 507.77s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.894653731449145, dt = 0.0023075295744611666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.7%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 325.77 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209092881944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.564833545842721e-19,-3.484792587410496e-20,1.1862785531611785e-16)
    sum a = (-1.2824166964419572e-18,1.7423940639674262e-19,1.6491199665572399e-15)
    sum e = 3.160813941656687e-09
    sum de = 1.0653291923207036e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307476464607429 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9137e+04 | 9216 |      1 | 3.163e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.26302853927625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.8969612610236064, dt = 0.002307476464607429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 328.90 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.209092881944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.535413780307247e-19,-3.4448206734327475e-20,1.2240712236254124e-16)
    sum a = (-1.2677070644389886e-18,1.7224095442490909e-19,1.6261987764488416e-15)
    sum e = 3.160838392441881e-09
    sum de = 1.0536248523981159e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023074246671087027 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.967826189552827 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 508.38s (max_walltime = 510.52s)  [SPH][rank=0]
---------------- t = 2.899268737488214, dt = 0.000731262511787456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 334.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2086588541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5263132240095705e-19,-3.432455914733997e-20,1.2356985551094977e-16)
    sum a = (-1.2631559580655058e-18,1.716226796436979e-19,1.6189827386076242e-15)
    sum e = 3.160845962022899e-09
    sum de = 1.0497140147096993e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307409085960066 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.04901996746417 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 508.67s (max_walltime = 510.52s)  [SPH][rank=0]
Info: iteration since start : 1275                                                    [SPH][rank=0]
Info: time since start : 508.672811964 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 29):
   -> t = 2.9000000000000012 >= 2.9000000000000012
--------------------------------
tfinal = 5.65097557969105
5.025000000000004
5.050000000000004
5.075000000000005
5.100000000000005
5.125000000000005
5.150000000000006
5.175000000000006
5.200000000000006
5.225000000000007
5.250000000000007
5.2750000000000075
5.300000000000008
5.325000000000008
5.3500000000000085
5.375000000000009
5.400000000000009
5.42500000000001
5.45000000000001
5.47500000000001
5.500000000000011
5.525000000000011
5.550000000000011
5.575000000000012
5.600000000000012
5.625000000000012
5.650000000000013
tfinal = 5.65097557969105
5.025000000000004
5.050000000000004
5.075000000000005
5.100000000000005
5.125000000000005
5.150000000000006
5.175000000000006
5.200000000000006
5.225000000000007
5.250000000000007
5.2750000000000075
5.300000000000008
5.325000000000008
5.3500000000000085
5.375000000000009
5.400000000000009
5.42500000000001
5.45000000000001
5.47500000000001
5.500000000000011
5.525000000000011
5.550000000000011
5.575000000000012
5.600000000000012
5.625000000000012
5.650000000000013
tfinal = 5.65097557969105
5.025000000000004
5.050000000000004
5.075000000000005
5.100000000000005
5.125000000000005
5.150000000000006
5.175000000000006
5.200000000000006
5.225000000000007
5.250000000000007
5.2750000000000075
5.300000000000008
5.325000000000008
5.3500000000000085
5.375000000000009
5.400000000000009
5.42500000000001
5.45000000000001
5.47500000000001
5.500000000000011
5.525000000000011
5.550000000000011
5.575000000000012
5.600000000000012
5.625000000000012
5.650000000000013
tfinal = 5.65097557969105
5.025000000000004
5.050000000000004
5.075000000000005
5.100000000000005
5.125000000000005
5.150000000000006
5.175000000000006
5.200000000000006
5.225000000000007
5.250000000000007
5.2750000000000075
5.300000000000008
5.325000000000008
5.3500000000000085
5.375000000000009
5.400000000000009
5.42500000000001
5.45000000000001
5.47500000000001
5.500000000000011
5.525000000000011
5.550000000000011
5.575000000000012
5.600000000000012
5.625000000000012
5.650000000000013
tfinal = 5.65097557969105
5.025000000000004
5.050000000000004
5.075000000000005
5.100000000000005
5.125000000000005
5.150000000000006
5.175000000000006
5.200000000000006
5.225000000000007
5.250000000000007
5.2750000000000075
5.300000000000008
5.325000000000008
5.3500000000000085
5.375000000000009
5.400000000000009
5.42500000000001
5.45000000000001
5.47500000000001
5.500000000000011
5.525000000000011
5.550000000000011
5.575000000000012
5.600000000000012
5.625000000000012
5.650000000000013
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[4.30237142e-14 2.13963574e-13 8.22239393e-13 ... 1.15110952e-12
 9.52579163e-13 1.86662513e-15]
(9216, 3)
[[4.30237142e-14 2.13963574e-13 8.22239393e-13 8.87386064e-13
  1.34380289e-15]
 [8.42282492e-06 6.26323367e-06 3.25303864e-12 1.48697126e-11
  1.44381120e-12]
 [6.22586605e-14 3.95601917e-13 2.53745776e-12 1.54302989e-12
  1.98319250e-14]
 ...
 [4.20953124e-05 5.31806730e-05 6.62980126e-05 7.01292019e-05
  6.99346395e-06]
 [3.29984822e-05 3.91335287e-05 3.93757448e-05 1.58222493e-05
  3.38806330e-11]
 [6.99681251e-14 4.42940448e-13 1.15110952e-12 9.52579163e-13
  1.86662513e-15]]
compute original rho
0.0006641074774350824 0.0
0.0010730596088209204 0.0
0.0017855494740056644 0.0
0.003166054827439043 0.0
0.006356021730213763 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 2.9000000000000012 -> 3.0000000000000013

[Simulation] Evolve until next trigger(s) :
   -> t = 3.0000000000000013 (current = 2.9000000000000012)
   -> iter = None (current = 1274)
   -> walltime = 510.51713791000003 (current = 514.83504458)

Info: evolve_until (target_time = 3.00s, niter_max = -1, max_walltime = 510.52s)      [SPH][rank=0]
---------------- t = 2.9000000000000012, dt = 0.002307409085960066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 319.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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.2086588541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4971836895457696e-19,-3.39287814145e-20,1.2730287258322884e-16)
    sum a = (-1.2485914493325799e-18,1.6964349306525905e-19,1.5954940893253422e-15)
    sum e = 3.1608701690692814e-09
    sum de = 1.03775098805163e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307358392823192 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4234e+04 | 9216 |      1 | 3.803e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.842954360058968 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 515.22s > 510.52s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 16):
   -> walltime = 515.215960999 >= 510.51713791000003
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000016.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (55.2%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000016.sham              [Shamrock Dump][rank=0]
              - took 1.45 ms, bandwidth = 2.40 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 515.215960999 -> 545.215960999

[Simulation] Evolve until next trigger(s) :
   -> t = 3.0000000000000013 (current = 2.9023074090859615)
   -> iter = None (current = 1275)
   -> walltime = 545.215960999 (current = 515.2198731980001)

Info: evolve_until (target_time = 3.00s, niter_max = -1, max_walltime = 545.22s)      [SPH][rank=0]
---------------- t = 2.9023074090859615, dt = 0.002307358392823192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (1.0%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 285.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2086588541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.468542240678204e-19,-3.3539636455308926e-20,1.3095715029969056e-16)
    sum a = (-1.2342713429123647e-18,1.6769821298642611e-19,1.5718022491127518e-15)
    sum e = 3.1608939756909943e-09
    sum de = 1.0253555399930976e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023073094635516394 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1060e+04 | 9216 |      1 | 2.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.995098815159643 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.13s (niter = 24) global walltime = 515.52s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 2.9046147674787846, dt = 0.0023073094635516394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 303.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.2084418402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.440228989438469e-19,-3.315494893973002e-20,1.3455645172042222e-16)
    sum a = (-1.22011437510477e-18,1.6577460225375358e-19,1.5477968597759862e-15)
    sum e = 3.1609174908170717e-09
    sum de = 1.0126771168162775e-11
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023072616078900544 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.097e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.821388351362227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9069220769423363, dt = 0.0023072616078900544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.2%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 305.19 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.208224826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4122410812674454e-19,-3.277468283215637e-20,1.380999300604893e-16)
    sum a = (-1.2061207642864073e-18,1.63873460057529e-19,1.5234907614691908e-15)
    sum e = 3.160940709666584e-09
    sum de = 9.997235375969078e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.002307214685376417 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0798e+04 | 9216 |      1 | 2.992e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.75762367332184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9092293385502264, dt = 0.002307214685376417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 321.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.208224826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3845747213536676e-19,-3.2398784803949935e-20,1.4158691005518917e-16)
    sum a = (-1.1922879429484447e-18,1.6199406705607258e-19,1.4988960966395001e-15)
    sum e = 3.1609636260028226e-09
    sum de = 9.865034095705267e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.21e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023071685231253556 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.067e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.07986025988476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9115365532356026, dt = 0.0023071685231253556 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 315.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2078993055555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.357226204936519e-19,-3.2027205340209786e-20,1.4501674336234735e-16)
    sum a = (-1.1786128613401646e-18,1.6013625102163264e-19,1.4740250148217103e-15)
    sum e = 3.1609862337950685e-09
    sum de = 9.730253435018172e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.21e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023071229238732765 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5683e+04 | 9216 |      1 | 3.588e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.146739369513682 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.913843721758728, dt = 0.0023071229238732765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 317.96 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.3%)
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.2078993055555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3301919104841995e-19,-3.1659894421053176e-20,1.4838880937643683e-16)
    sum a = (-1.1650970618332425e-18,1.5829969785895814e-19,1.4488896587292879e-15)
    sum e = 3.161008527209465e-09
    sum de = 9.592979537036725e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.21e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023070776711106343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7449e+04 | 9216 |      1 | 3.357e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.738010854371552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.916150844682601, dt = 0.0023070776711106343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 341.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.2077907986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3034681289668197e-19,-3.129680328887998e-20,1.5170251517771675e-16)
    sum a = (-1.1517339105541141e-18,1.5648423106222188e-19,1.4235021685166e-15)
    sum e = 3.1610305006089835e-09
    sum de = 9.45329854898487e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.21e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023070325348909277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.444703743781822 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9184579223537117, dt = 0.0023070325348909277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.3%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 286.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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.2077907986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2770514031975803e-19,-3.09378832398686e-20,1.5495729553783062e-16)
    sum a = (-1.1385263390078408e-18,1.546888539234441e-19,1.3978746749175158e-15)
    sum e = 3.161052148553371e-09
    sum de = 9.311296594813694e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.20e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023069872781231945 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8484e+04 | 9216 |      1 | 3.235e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.66952965397225 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9207649548886025, dt = 0.0023069872781231945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2077907986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2509380963721265e-19,-3.058308914420058e-20,1.5815261289880352e-16)
    sum a = (-1.125468373392266e-18,1.529149671602646e-19,1.3720192868206068e-15)
    sum e = 3.1610734657991133e-09
    sum de = 9.16705973664024e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.20e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.00230694166317529 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1485e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37359525123831 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9230719421667257, dt = 0.00230694166317529 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.2%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 289.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2077907986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.225124819700053e-19,-3.0232369349794007e-20,1.612879573285534e-16)
    sum a = (-1.112561602677959e-18,1.5116110681258714e-19,1.3459480988146865e-15)
    sum e = 3.161094447299365e-09
    sum de = 9.020673944430483e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.20e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023068954586020637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.359014449237637 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.925378883829901, dt = 0.0023068954586020637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.3%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 281.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.2077907986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1996080630907865e-19,-2.988567948495647e-20,1.6436284653057414e-16)
    sum a = (-1.0998039159581296e-18,1.4942872949031642e-19,1.3196731757116131e-15)
    sum e = 3.161115088203879e-09
    sum de = 8.87222505084527e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.19e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023068484458115953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1414e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.30793695349904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.927685779288503, dt = 0.0023068484458115953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 328.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2075737847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.174384406636642e-19,-2.954296829585605e-20,1.6737682579428861e-16)
    sum a = (-1.0871924718379833e-18,1.4771576381264684e-19,1.2932065490662253e-15)
    sum e = 3.1611353838588826e-09
    sum de = 8.72179873160818e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.19e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002306800425483184 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0910e+04 | 9216 |      1 | 2.982e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.852983083784512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9299926277343147, dt = 0.002306800425483184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 323.81 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.207356770833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1494505095655318e-19,-2.920419321863936e-20,1.7032946796364104e-16)
    sum a = (-1.0747243238788064e-18,1.4602101379778292e-19,1.2665602124025019e-15)
    sum e = 3.1611553298069815e-09
    sum de = 8.569480467297405e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.19e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023067512235574786 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.355815954134634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.932299428159798, dt = 0.0023067512235574786 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (1.9%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1.55 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 353.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.91 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.2071397569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.124803100822153e-19,-2.8869313851597663e-20,1.732203733926788e-16)
    sum a = (-1.062400932968579e-18,1.443467851611998e-19,1.2397461212104643e-15)
    sum e = 3.1611749217869977e-09
    sum de = 8.41535550467275e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023067006966309097 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1299e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.202463568795725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9346061793833553, dt = 0.0023067006966309097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 312.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2067057291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1004388270026507e-19,-2.853828009376781e-20,1.7604916991516604e-16)
    sum a = (-1.0502184007417596e-18,1.426911987494066e-19,1.212776180150751e-15)
    sum e = 3.16119415573374e-09
    sum de = 8.259508825907875e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002306648736604303 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1496e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37970665696784 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.936912880079986, dt = 0.002306648736604303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 286.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2064887152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0763544847879188e-19,-2.821105103522703e-20,1.788155127685462e-16)
    sum a = (-1.0381768246698102e-18,1.410549434117916e-19,1.185662238150007e-15)
    sum e = 3.161213027777743e-09
    sum de = 8.102025111327738e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023065952744514757 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.42379442845516 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9392195288165905, dt = 0.0023065952744514757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.77 us    (0.6%)
   LB compute        : 266.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.206271701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0525468257894137e-19,-2.788758141755602e-20,1.8151908451392657e-16)
    sum a = (-1.0262733648191726e-18,1.3943834647835187e-19,1.1584160835783832e-15)
    sum e = 3.1612315342448947e-09
    sum de = 7.94298872325177e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.56e-02 |
+-------------+----------+
Info: cfl dt = 0.0023065402830032477 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0217e+04 | 9216 |      1 | 3.050e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.22554029091499 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.941526124091042, dt = 0.0023065402830032477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 283.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
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.206271701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0290126995477905e-19,-2.756782573462411e-20,1.841595949494073e-16)
    sum a = (-1.0145053079524644e-18,1.3783905368273632e-19,1.1310494443909422e-15)
    sum e = 3.161249671656064e-09
    sum de = 7.78248365994655e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023064837786693033 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31490399639504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.943832664374045, dt = 0.0023064837786693033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.21 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.206271701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0057490165618791e-19,-2.725174658187871e-20,1.867367810181647e-16)
    sum a = (-1.0028743135580809e-18,1.362583886800077e-19,1.1035739738097308e-15)
    sum e = 3.1612674367265514e-09
    sum de = 7.620593517929048e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023064258220453064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1551e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.426634046147733 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9461391481527146, dt = 0.0023064258220453064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 286.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.206271701388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9827525974117003e-19,-2.693929959189118e-20,1.892504066643168e-16)
    sum a = (-9.913759168435935e-19,1.346963688729548e-19,1.0760012590807018e-15)
    sum e = 3.1612848263654402e-09
    sum de = 7.457401465068596e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023063665173864508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.478610941596948 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9484455739747597, dt = 0.0023063665173864508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 292.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9600204363090435e-19,-2.6630441813355088e-20,1.9170026273012645e-16)
    sum a = (-9.800097286977847e-19,1.3315223769799968e-19,1.0483427991695542e-15)
    sum e = 3.1613018376748484e-09
    sum de = 7.292990213442456e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002306306010958711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.371724585262555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9507519404921463, dt = 0.002306306010958711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 319.23 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.937549485389154e-19,-2.6325132648978403e-20,1.9408616675622574e-16)
    sum a = (-9.687746535503977e-19,1.3162655874758377e-19,1.0206100136086511e-15)
    sum e = 3.161318467949074e-09
    sum de = 7.1274419878844105e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023062444883093485 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1448e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.331287687571766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.953058246503105, dt = 0.0023062444883093485 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 316.05 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9153367319977747e-19,-2.6023328950220893e-20,1.9640796283017563e-16)
    sum a = (-9.576679030160438e-19,1.3011633690227837e-19,9.92814242464205e-16)
    sum e = 3.1613347146736072e-09
    sum de = 6.9608384824034704e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023061821705266192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1455e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.337223029651703 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9553644909914145, dt = 0.0023061821705266192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.83 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 307.09 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8933792394913122e-19,-2.5724998509379472e-20,1.986655214127285e-16)
    sum a = (-9.46690769804159e-19,1.2862542564304238e-19,9.649667362886082e-16)
    sum e = 3.1613505755239584e-09
    sum de = 6.793260836055554e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002306119309587508 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37453017247057 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.957670673161941, dt = 0.002306119309587508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 266.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.871673997240113e-19,-2.5430092016076695e-20,2.0085873912548254e-16)
    sum a = (-9.358375996808696e-19,1.2715105658845158e-19,9.370786506647089e-16)
    sum e = 3.161366048364403e-09
    sum de = 6.624789606828262e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023060561829140363 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1581e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.448991624296525 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.42s (niter = 18) global walltime = 522.75s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 2.9599767924715286, dt = 0.0023060561829140363 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.56 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 326.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8502181999357429e-19,-2.5138574629661923e-20,2.0298753851516495e-16)
    sum a = (-9.25108321001614e-19,1.256927679924312e-19,9.091610477515506e-16)
    sum e = 3.161381131246579e-09
    sum de = 6.455504741046733e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002305993087281307 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9175e+04 | 9216 |      1 | 3.159e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.28053919507993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.962282848654443, dt = 0.002305993087281307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.94 us   (6.9%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 322.00 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
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.2060546874999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8290089777025162e-19,-2.485040938942741e-20,2.0505186782616345e-16)
    sum a = (-9.145040234829033e-19,1.242514742408157e-19,8.81224884545545e-16)
    sum e = 3.1613958224079735e-09
    sum de = 6.285485557783656e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023059303322354994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1448e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32807824640475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9645888417417243, dt = 0.0023059303322354994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 324.61 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.205620659722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8080434195124767e-19,-2.4565556016901168e-20,2.070517007169848e-16)
    sum a = (-9.040218620812559e-19,1.2282740695266487e-19,8.532810132725753e-16)
    sum e = 3.161410120270296e-09
    sum de = 6.114810708142861e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305868233192271 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1381e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.266254671291726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.96689477207396, dt = 0.002305868233192271 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.81 us    (0.6%)
   LB compute        : 275.55 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.205620659722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.787318722081794e-19,-2.4283973991676586e-20,2.0898703598934533e-16)
    sum a = (-8.936598242217995e-19,1.2141932409085136e-19,8.253401781169415e-16)
    sum e = 3.161424023437717e-09
    sum de = 5.943558168856177e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305807104394604 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9375e+04 | 9216 |      1 | 3.137e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.459143380371465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.969200640307152, dt = 0.002305807104394604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 287.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.5%)
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.205186631944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7668321178212796e-19,-2.400562787397439e-20,2.1085789729363507e-16)
    sum a = (-8.834166435897684e-19,1.2002845109515384e-19,7.974130045941275e-16)
    sum e = 3.161437530695042e-09
    sum de = 5.7718051892084675e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305747251908767 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1576e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.440607547558333 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9715064474115467, dt = 0.002305747251908767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.7%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 345.62 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.205186631944444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7465808567469953e-19,-2.3730476247858448e-20,2.1266433279997247e-16)
    sum a = (-8.732910372994557e-19,1.186523146041117e-19,7.695100131109275e-16)
    sum e = 3.161450641005694e-09
    sum de = 5.599628296076635e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.57e-02 |
+-------------+----------+
Info: cfl dt = 0.0023056889668377884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.404420819787944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9738121946634553, dt = 0.0023056889668377884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 319.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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.2047526041666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7265622170434006e-19,-2.3458487316873293e-20,2.144064149241611e-16)
    sum a = (-8.632815938059933e-19,1.1729163703592206e-19,7.416416052201121e-16)
    sum e = 3.161463353509747e-09
    sum de = 5.4271032591433564e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023056325189219156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.334427271200006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.976117883630293, dt = 0.0023056325189219156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 293.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2045355902777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7067735097287455e-19,-2.318962450446321e-20,2.1608423998626234e-16)
    sum a = (-8.533878337756623e-19,1.159485862305509e-19,7.138180565428374e-16)
    sum e = 3.161475667521789e-09
    sum de = 5.254305076231135e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023055781506850863 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.105e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.733151194705375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9784235161492147, dt = 0.0023055781506850863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.4%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
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.204318576388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6872120425643085e-19,-2.2923844373939556e-20,2.1769792786172077e-16)
    sum a = (-8.436063504827091e-19,1.1461963425010365e-19,6.860495213065727e-16)
    sum e = 3.1614875825287862e-09
    sum de = 5.081307953367744e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023055260722701096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.541546502373013 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9807290942998996, dt = 0.0023055260722701096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 281.89 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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.204318576388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.667875238449698e-19,-2.2661117804844744e-20,2.1924762165590488e-16)
    sum a = (-8.339370605178642e-19,1.1330601044712572e-19,6.583460191011658e-16)
    sum e = 3.1614990981878814e-09
    sum de = 4.9081852942193105e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023054764570855707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0783e+04 | 9216 |      1 | 2.994e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.722869461543723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9830346203721696, dt = 0.0023054764570855707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 298.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.2041015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.648760480100541e-19,-2.2401407761786248e-20,2.2073348733043558e-16)
    sum a = (-8.243801161841385e-19,1.1200715993937265e-19,6.307174409660329e-16)
    sum e = 3.161510214324194e-09
    sum de = 4.7350096816890706e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023054294383654857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7886e+04 | 9216 |      1 | 3.305e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.113552464669304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.985340096829255, dt = 0.0023054294383654857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 301.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2041015625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6298651444667459e-19,-2.2144680437459042e-20,2.22155713367595e-16)
    sum a = (-8.1493287551459955e-19,1.1072368291179639e-19,6.031735499993009e-16)
    sum e = 3.1615209309285854e-09
    sum de = 4.5618528537823125e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023053851067169825 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1258e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.149205401345725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9876455262676207, dt = 0.0023053851067169825 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 266.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2038845486111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6111867036105788e-19,-2.189089914499952e-20,2.235145104381418e-16)
    sum a = (-8.05593348882818e-19,1.094549811512329e-19,5.757239706531112e-16)
    sum e = 3.1615312481553743e-09
    sum de = 4.3887857015418314e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023053435087049393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1642e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.494600022321976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9899509113743377, dt = 0.0023053435087049393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.4%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 260.03 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.2036675347222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5927226644527006e-19,-2.1640030298543678e-20,2.248101110308616e-16)
    sum a = (-7.963614366166754e-19,1.0820046549801762e-19,5.483781996681701e-16)
    sum e = 3.161541166320133e-09
    sum de = 4.2158782408286024e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305304646494986 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0628e+04 | 9216 |      1 | 3.009e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.581639212394606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9922562548830425, dt = 0.002305304646494986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 271.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.203450520833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5744705209298998e-19,-2.139204124007916e-20,2.2604276914483584e-16)
    sum a = (-7.872351011990629e-19,1.0695940294439595e-19,5.211456022412966e-16)
    sum e = 3.1615506858974026e-09
    sum de = 4.0431996085423485e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305268478549724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1745e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.586928748632015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9945615595295374, dt = 0.002305268478549724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 273.63 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.203450520833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5564278338789125e-19,-2.114690159106076e-20,2.272127599578559e-16)
    sum a = (-7.782132838414909e-19,1.057345089108012e-19,4.940354082118447e-16)
    sum e = 3.1615598075184757e-09
    sum de = 3.870818035554117e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305234921342252 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.035e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.341394031320306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 2.9968668280080872, dt = 0.002305234921342252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 328.80 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.203016493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.538592177516464e-19,-2.0904570586809032e-20,2.2832037949524184e-16)
    sum a = (-7.692964964958036e-19,1.0452221327716173e-19,4.670567014139067e-16)
    sum e = 3.161568531969154e-09
    sum de = 3.698800842836847e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305203852029694 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9886e+04 | 9216 |      1 | 3.084e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.91166147856171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 2.9991720629294294, dt = 0.000827937070571938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 333.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.203016493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5323256628283116e-19,-2.081943018677436e-20,2.286759769237742e-16)
    sum a = (-7.661640288043712e-19,1.0409684505642098e-19,4.575366800746641e-16)
    sum e = 3.1615713958525817e-09
    sum de = 3.6373012195595e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051943084224425 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8596e+04 | 9216 |      1 | 3.223e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.248162709672686 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.22s (niter = 14) global walltime = 528.19s (max_walltime = 545.22s)  [SPH][rank=0]
Info: iteration since start : 1319                                                    [SPH][rank=0]
Info: time since start : 528.1891671440001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 30):
   -> t = 3.0000000000000013 >= 3.0000000000000013
--------------------------------
tfinal = 6.278861755212277
5.675000000000013
5.7000000000000135
5.725000000000014
5.750000000000014
5.775000000000015
5.800000000000015
5.825000000000015
5.850000000000016
5.875000000000016
5.900000000000016
5.925000000000017
5.950000000000017
5.975000000000017
6.000000000000018
6.025000000000018
6.0500000000000185
6.075000000000019
6.100000000000019
6.1250000000000195
6.15000000000002
6.17500000000002
6.200000000000021
6.225000000000021
6.250000000000021
6.275000000000022
tfinal = 6.278861755212277
5.675000000000013
5.7000000000000135
5.725000000000014
5.750000000000014
5.775000000000015
5.800000000000015
5.825000000000015
5.850000000000016
5.875000000000016
5.900000000000016
5.925000000000017
5.950000000000017
5.975000000000017
6.000000000000018
6.025000000000018
6.0500000000000185
6.075000000000019
6.100000000000019
6.1250000000000195
6.15000000000002
6.17500000000002
6.200000000000021
6.225000000000021
6.250000000000021
6.275000000000022
tfinal = 6.278861755212277
5.675000000000013
5.7000000000000135
5.725000000000014
5.750000000000014
5.775000000000015
5.800000000000015
5.825000000000015
5.850000000000016
5.875000000000016
5.900000000000016
5.925000000000017
5.950000000000017
5.975000000000017
6.000000000000018
6.025000000000018
6.0500000000000185
6.075000000000019
6.100000000000019
6.1250000000000195
6.15000000000002
6.17500000000002
6.200000000000021
6.225000000000021
6.250000000000021
6.275000000000022
tfinal = 6.278861755212277
5.675000000000013
5.7000000000000135
5.725000000000014
5.750000000000014
5.775000000000015
5.800000000000015
5.825000000000015
5.850000000000016
5.875000000000016
5.900000000000016
5.925000000000017
5.950000000000017
5.975000000000017
6.000000000000018
6.025000000000018
6.0500000000000185
6.075000000000019
6.100000000000019
6.1250000000000195
6.15000000000002
6.17500000000002
6.200000000000021
6.225000000000021
6.250000000000021
6.275000000000022
tfinal = 6.278861755212277
5.675000000000013
5.7000000000000135
5.725000000000014
5.750000000000014
5.775000000000015
5.800000000000015
5.825000000000015
5.850000000000016
5.875000000000016
5.900000000000016
5.925000000000017
5.950000000000017
5.975000000000017
6.000000000000018
6.025000000000018
6.0500000000000185
6.075000000000019
6.100000000000019
6.1250000000000195
6.15000000000002
6.17500000000002
6.200000000000021
6.225000000000021
6.250000000000021
6.275000000000022
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[5.47116251e-14 2.47759932e-13 3.79462523e-13 ... 8.05756520e-13
 8.04373886e-13 1.39659941e-16]
(9216, 3)
[[5.47116251e-14 2.47759932e-13 3.79462523e-13 7.49419216e-13
  7.42584462e-19]
 [8.16992646e-06 5.49491940e-06 3.59788811e-12 1.60221913e-11
  5.69314404e-13]
 [9.34197415e-14 5.43866846e-13 2.38357673e-12 1.53371267e-12
  2.96858032e-15]
 ...
 [4.21670571e-05 5.32671316e-05 6.60740617e-05 6.62755649e-05
  6.72577832e-11]
 [3.29014700e-05 3.86775457e-05 3.74014198e-05 1.04701241e-05
  2.57501369e-11]
 [8.43637145e-14 5.50935722e-13 8.05756520e-13 8.04373886e-13
  1.39659941e-16]]
compute original rho
0.0006650234651489414 0.0
0.0010769301851131581 0.0
0.0018013314317351272 0.0
0.0032275801705509435 0.0
0.006601988638824514 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.0000000000000013 -> 3.1000000000000014

[Simulation] Evolve until next trigger(s) :
   -> t = 3.1000000000000014 (current = 3.0000000000000013)
   -> iter = None (current = 1318)
   -> walltime = 545.215960999 (current = 534.324076171)

Info: evolve_until (target_time = 3.10s, niter_max = -1, max_walltime = 545.22s)      [SPH][rank=0]
---------------- t = 3.0000000000000013, dt = 0.0023051943084224425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 312.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
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.203016493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5146770602580648e-19,-2.057964277682401e-20,2.2972674688545535e-16)
    sum a = (-7.573379823240981e-19,1.0289783834022239e-19,4.306139036768596e-16)
    sum e = 3.16157975529899e-09
    sum de = 3.465700072242877e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051653108042526 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5789e+04 | 9216 |      1 | 3.574e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.222435107036222 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.50s (niter = 7) global walltime = 534.68s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.002305194308424, dt = 0.0023051653108042526 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 313.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.203016493055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4973208970299113e-19,-2.034382815200443e-20,2.3068835200293555e-16)
    sum a = (-7.486605354188671e-19,1.0171932104437596e-19,4.039813708105968e-16)
    sum e = 3.161587546521494e-09
    sum de = 3.2948055644331066e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051394313702883 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8512e+04 | 9216 |      1 | 3.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.674070251963027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.004610359619228, dt = 0.0023051394313702883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 310.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4801632430215246e-19,-2.0110709337296087e-20,2.3158888919506786e-16)
    sum a = (-7.400823366711955e-19,1.0055435172721244e-19,3.7750901487558044e-16)
    sum e = 3.1615949445356606e-09
    sum de = 3.1244932206818854e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051153851378577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1441e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.310849640698567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0069154990505984, dt = 0.0023051153851378577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 274.97 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4632023606388214e-19,-1.9880262687748982e-20,2.3242857979739564e-16)
    sum a = (-7.316026210361766e-19,9.940080874934106e-20,3.5120611566260825e-16)
    sum e = 3.161601950554004e-09
    sum de = 2.954827844353265e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305092934957294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0822e+04 | 9216 |      1 | 2.990e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.753657762691066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.009220614435736, dt = 0.002305092934957294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 297.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4464359739632104e-19,-1.9652464056938576e-20,2.3320782692461604e-16)
    sum a = (-7.232173724923883e-19,9.82621711104649e-20,3.250809821263626e-16)
    sum e = 3.1616085661552743e-09
    sum de = 2.7858716753070903e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050718241705796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1431e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.301040421506364 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0115257073706934, dt = 0.0023050718241705796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 306.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
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.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.429861938059155e-19,-1.942727503928882e-20,2.3392705150653e-16)
    sum a = (-7.149315059192573e-19,9.713673699036705e-20,2.991417884515121e-16)
    sum e = 3.161614793057187e-09
    sum de = 2.6176859796997046e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050517892633177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.24540429804898 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0138307791948638, dt = 0.0023050517892633177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.64 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 291.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4134778931190521e-19,-1.920466704910156e-20,2.345866929691938e-16)
    sum a = (-7.067392824104639e-19,9.602349253355502e-20,2.7339656535501457e-16)
    sum e = 3.1616206331161587e-09
    sum de = 2.4503310037229346e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305032565904204 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1579e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.43393386275757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.016135830984127, dt = 0.002305032565904204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 335.57 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202799479166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3972817408612753e-19,-1.8984612700036252e-20,2.3518720891934486e-16)
    sum a = (-6.986404803027166e-19,9.4923367596476e-20,2.478531906382247e-16)
    sum e = 3.1616260883250897e-09
    sum de = 2.2838660073221634e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050138948748243 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35667107901512 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.84s (niter = 6) global walltime = 536.77s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0184408635500315, dt = 0.0023050138948748243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 275.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202582465277778
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3812713211217471e-19,-1.8767080961465763e-20,2.3572907481244596e-16)
    sum a = (-6.906363749906889e-19,9.383596276444004e-20,2.225193960828702e-16)
    sum e = 3.1616311608113105e-09
    sum de = 2.1183492070429555e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049955276981463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1598e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.450770695461 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 3.0207458774449063, dt = 0.0023049955276981463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.1%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 310.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.202365451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3654444315278054e-19,-1.8552042754744965e-20,2.3621278365099306e-16)
    sum a = (-6.827218578976008e-19,9.276100129173222e-20,1.9740275966439077e-16)
    sum e = 3.1616358528343064e-09
    sum de = 1.9538377934585564e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049772318300497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9702e+04 | 9216 |      1 | 3.103e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.742910018651962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0230508729726044, dt = 0.0023049772318300497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.7%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 341.39 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 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.2021484375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3497990625282795e-19,-1.8339469705438703e-20,2.3663884565026613e-16)
    sum a = (-6.748994577930335e-19,9.169848712632972e-20,1.7251070653269162e-16)
    sum e = 3.161640166783564e-09
    sum de = 1.790387907136494e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049587952951676 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8242e+04 | 9216 |      1 | 3.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.42819820135972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0253558502044346, dt = 0.0023049587952951676 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 321.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2021484375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3343330602529692e-19,-1.8129333038867478e-20,2.370077879127423e-16)
    sum a = (-6.671673119403912e-19,9.064677955583557e-20,1.4785050146970233e-16)
    sum e = 3.1616441051763154e-09
    sum de = 1.6280546264274649e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002304940030664863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.25539169301969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.02766080899973, dt = 0.002304940030664863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.63 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 273.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 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.201931423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3190443655039007e-19,-1.792160963548794e-20,2.3732015407379466e-16)
    sum a = (-6.595221071330038e-19,8.960846929390033e-20,1.2342925016498294e-16)
    sum e = 3.161647670655235e-09
    sum de = 1.466891967361639e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049207782954513 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0297e+04 | 9216 |      1 | 3.042e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.278779314050595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.029965749030395, dt = 0.0023049207782954513 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 293.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.201931423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3039310114226334e-19,-1.7716265857445578e-20,2.37576503957307e-16)
    sum a = (-6.519646724284641e-19,8.858116314016427e-20,9.925390396153567e-17)
    sum e = 3.1616508659861583e-09
    sum de = 1.3069528506098226e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049009087669986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1462e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32681171886827 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.52s (niter = 5) global walltime = 538.59s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0322706698086903, dt = 0.0023049009087669986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 312.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.201931423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2889909686080784e-19,-1.7513278971962363e-20,2.3777741324188287e-16)
    sum a = (-6.444960748457158e-19,8.756641791801188e-20,7.533124467958726e-17)
    sum e = 3.1616536940556395e-09
    sum de = 1.1482890973113852e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304880324484087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1307e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.187275817782297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.034575570717457, dt = 0.002304880324484087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 277.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.201931423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2742221770700263e-19,-1.731261826888171e-20,2.379234730660432e-16)
    sum a = (-6.37111279692809e-19,8.656309770595533e-20,5.166789272746804e-17)
    sum e = 3.1616561578685345e-09
    sum de = 9.909514220623726e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.57e-02 |
+-------------+----------+
Info: cfl dt = 0.002304858960426339 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1016e+04 | 9216 |      1 | 2.971e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.925254260787707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.036880451041941, dt = 0.002304858960426339 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 316.82 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2014973958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.259622765546539e-19,-1.7114258788361564e-20,2.3801528967422025e-16)
    sum a = (-6.298120036707971e-19,8.557135859653536e-20,2.8270295842491753e-17)
    sum e = 3.161658260545507e-09
    sum de = 8.349894234977892e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023048367840574047 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.996729804036907 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0391853100023676, dt = 0.0023048367840574047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.6%)
   LB compute        : 269.02 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
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.2012803819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2451907460088634e-19,-1.6918173728885748e-20,2.3805348401155064e-16)
    sum a = (-6.225956460090311e-19,8.459073844095711e-20,5.144733930849761e-18)
    sum e = 3.161660005320519e-09
    sum de = 6.80451577773445e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304813794424308 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0072e+04 | 9216 |      1 | 3.065e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.07482088697448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.041490146786425, dt = 0.002304813794424308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.91 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 301.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.2012803819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.230924238700529e-19,-1.672433788633937e-20,2.380386913425237e-16)
    sum a = (-6.15462185242311e-19,8.362199452461376e-20,-1.7702681458997108e-17)
    sum e = 3.16166139553825e-09
    sum de = 5.273852238468955e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047900204953508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.020e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.477294570759963 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.22s (niter = 4) global walltime = 540.10s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.043794960580849, dt = 0.0023047900204953508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.58 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 323.35 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.2012803819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2168213338921283e-19,-1.6532723056287962e-20,2.3797156085982783e-16)
    sum a = (-6.084106953741403e-19,8.266397522213519e-20,-4.026600561684475e-17)
    sum e = 3.161662434651467e-09
    sum de = 3.758365638819436e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047655188352884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.055105726998043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0460997506013445, dt = 0.0023047655188352884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 282.93 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (60.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2028801550401486e-19,-1.6343306015482245e-20,2.378527552963026e-16)
    sum a = (-6.014414996941116e-19,8.17162030945676e-20,-6.253946759791837e-17)
    sum e = 3.161663126218385e-09
    sum de = 2.2585063914191942e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047403706375922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.283499817106783 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0484045161201796, dt = 0.0023047403706375922 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 315.34 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 19.17 us   (5.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1890988009537285e-19,-1.615606355745295e-20,2.376829505072165e-16)
    sum a = (-5.945494215195383e-19,8.078029659467095e-20,-8.451746660576843e-17)
    sum e = 3.1616634738999163e-09
    sum de = 7.747133616382325e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047146783071524 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.190475075434428 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0507092564908174, dt = 0.0023047146783071524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.5%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 275.26 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1754755558692937e-19,-1.5970966525981827e-20,2.374628350704188e-16)
    sum a = (-5.87737392164025e-19,7.985518667889783e-20,-1.0619457599845074e-16)
    sum e = 3.1616634814569593e-09
    sum de = -6.925861949016904e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304688561635701 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9409e+04 | 9216 |      1 | 3.134e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.47602104016662 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 541.30s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0530139711691247, dt = 0.002304688561635701 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 264.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1620085385339272e-19,-1.578799121505065e-20,2.3719310986977075e-16)
    sum a = (-5.810040322034804e-19,7.894083392909529e-20,-1.2756554765096632e-16)
    sum e = 3.1616631527476498e-09
    sum de = -2.1429767068312518e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023046621537168924 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1434e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.299497005806803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0553186597307604, dt = 0.0023046621537168924 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.7%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 334.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1486959496911604e-19,-1.5607112995741033e-20,2.3687448766298943e-16)
    sum a = (-5.74346599609338e-19,7.803565040680152e-20,-1.486253070100174e-16)
    sum e = 3.1616624917245596e-09
    sum de = -3.5760543174296124e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304635596717555 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1358e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.23028362508124 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0576233218844773, dt = 0.002304635596717555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 282.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2010633680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1355360690880808e-19,-1.5428312247002737e-20,2.3650769267468067e-16)
    sum a = (-5.677674357036894e-19,7.714206853247016e-20,-1.693689489961391e-16)
    sum e = 3.161661502431918e-09
    sum de = -4.991426970335484e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.19e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023046090376267632 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1450e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.31248222190543 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 542.18s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.059927957481195, dt = 0.0023046090376267632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 295.75 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.5%)
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.2006293402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.122527062697852e-19,-1.525155964096633e-20,2.360934601962485e-16)
    sum a = (-5.612638522772144e-19,7.625782614821329e-20,-1.8979174218684754e-16)
    sum e = 3.1616601890027906e-09
    sum de = -6.388714452743642e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.20e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023045826241029584 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1249e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.13160169285064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0622325665188215, dt = 0.0023045826241029584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 306.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2003038194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.109667214316769e-19,-1.5076836214302676e-20,2.356325361681381e-16)
    sum a = (-5.548335314690168e-19,7.53844834532219e-20,-2.0988913318217832e-16)
    sum e = 3.161658555656247e-09
    sum de = -7.767548361895411e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.21e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304556500526197 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0170e+04 | 9216 |      1 | 3.055e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.16025788575619 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 542.78s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0645371491429243, dt = 0.002304556500526197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (2.4%)
   patch tree reduce : 2.80 us    (0.9%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 294.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2003038194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0969548587523356e-19,-1.4904114641464358e-20,2.351256767528061e-16)
    sum a = (-5.484773181858151e-19,7.452064707564646e-20,-2.296567334017354e-16)
    sum e = 3.1616566066945755e-09
    sum de = -9.127572089907707e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002304530804360441 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1341e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.21360695855428 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0668417056434505, dt = 0.002304530804360441 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.2%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 302.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.2003038194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0843882713503265e-19,-1.47333749561732e-20,2.345736479606125e-16)
    sum a = (-5.421943873620065e-19,7.366685875541284e-20,-2.490903346141406e-16)
    sum e = 3.1616543465004808e-09
    sum de = -1.0468440804120557e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.22e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304505662912764 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1303e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.17893604522192 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 543.37s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.069146236447811, dt = 0.002304505662912764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.200086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0719657680366164e-19,-1.45645930422637e-20,2.3397722520744785e-16)
    sum a = (-5.359829407468225e-19,7.282284842029594e-20,-2.6818590110685263e-16)
    sum e = 3.161651779534315e-09
    sum de = -1.1789821577357896e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.23e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023044811905641206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.165531760962146 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 543.67s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.071450742110724, dt = 0.0023044811905641206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 271.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.200086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0596857124032915e-19,-1.439774663102119e-20,2.3333719292222224e-16)
    sum a = (-5.298436026950211e-19,7.198823888443355e-20,-2.869395678393765e-16)
    sum e = 3.161648910331265e-09
    sum de = -1.3091393202402855e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.24e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304457486528604 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1501e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.356859458952275 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 543.96s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.073755223301288, dt = 0.002304457486528604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 308.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.200086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0475464317316118e-19,-1.4232814486939055e-20,2.3265434415082683e-16)
    sum a = (-5.237739292150991e-19,7.116366666671097e-20,-3.053476535280478e-16)
    sum e = 3.1616457434986516e-09
    sum de = -1.4372846311513274e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.25e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304434633184343 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1114e+04 | 9216 |      1 | 2.962e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.00796735566644 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 544.26s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0760596807878167, dt = 0.002304434633184343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 286.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.200086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0355463400527029e-19,-1.406977258682952e-20,2.3192948011739143e-16)
    sum a = (-5.1777331219314e-19,7.034846297231946e-20,-3.2340664499003706e-16)
    sum e = 3.161642283713152e-09
    sum de = -1.5633883309167065e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.26e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023044126949948876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1482e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33905792414223 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 544.55s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.078364115421001, dt = 0.0023044126949948876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 282.01 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.200086805555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0236838469523646e-19,-1.3908599989523735e-20,2.3116340985636314e-16)
    sum a = (-5.118415496298158e-19,6.954296540446925e-20,-3.411132065191305e-16)
    sum e = 3.1616385357180946e-09
    sum de = -1.6874218325878981e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.27e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043917180288207 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1640e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4809712630511 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 544.84s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0806685281159956, dt = 0.0023043917180288207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 268.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.199869791666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0119573591995574e-19,-1.3749273870916434e-20,2.3035694979584055e-16)
    sum a = (-5.059782683752674e-19,6.874541953020631e-20,-3.584641787114602e-16)
    sum e = 3.161634504320775e-09
    sum de = -1.8093577256262965e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.28e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304371730061921 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1602e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.44635408495855 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 545.13s (max_walltime = 545.22s)  [SPH][rank=0]
---------------- t = 3.0829729198340243, dt = 0.002304371730061921 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 262.28 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.1996527777777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0003652957548763e-19,-1.3591777804759947e-20,2.295109233579107e-16)
    sum a = (-5.001828709491495e-19,6.795860948710272e-20,-3.7545657232183534e-16)
    sum e = 3.1616301943897563e-09
    sum de = -1.929169766489653e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.29e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304352741235148 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.516017889164743 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 545.43s > 545.22s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 17):
   -> walltime = 545.4256270210001 >= 545.215960999
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000017.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (51.9%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000017.sham              [Shamrock Dump][rank=0]
              - took 1.43 ms, bandwidth = 2.43 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 545.4256270210001 -> 575.4256270210001

[Simulation] Evolve until next trigger(s) :
   -> t = 3.1000000000000014 (current = 3.0852772915640863)
   -> iter = None (current = 1355)
   -> walltime = 575.4256270210001 (current = 545.429694253)

Info: evolve_until (target_time = 3.10s, niter_max = -1, max_walltime = 575.43s)      [SPH][rank=0]
---------------- t = 3.0852772915640863, dt = 0.002304352741235148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (1.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 277.88 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1996527777777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.889060915116672e-20,-1.3436083666668672e-20,2.286261605803357e-16)
    sum a = (-4.944532850892936e-19,6.718044084055413e-20,-3.920875778371246e-16)
    sum e = 3.1616256108522194e-09
    sum de = -2.0468328784836644e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.30e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304334745218851 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.87387638984291 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.15s (niter = 24) global walltime = 545.73s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.0875816443053212, dt = 0.002304334745218851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.0%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.6%)
   LB compute        : 265.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.1994357638888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.775782477790784e-20,-1.3282174029921632e-20,2.277034976998791e-16)
    sum a = (-4.887890212069232e-19,6.641158319713634e-20,-4.0835455596942174e-16)
    sum e = 3.1616207586913334e-09
    sum de = -2.1623231425420566e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.30e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043177208296644 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4191618071059 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.08988597905054, dt = 0.0023043177208296644 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 275.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.663802573277124e-20,-1.3130026426369697e-20,2.2674377677894965e-16)
    sum a = (-4.831892785074725e-19,6.565021226709171e-20,-4.242550443591384e-16)
    sum e = 3.16161564294362e-09
    sum de = -2.2756177950296336e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.31e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043016340274095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1750e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.579257965134744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0921902967713697, dt = 0.0023043016340274095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.57 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 329.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.553106375315077e-20,-1.297962577546643e-20,2.2574784529836353e-16)
    sum a = (-4.776557991073731e-19,6.489823608999882e-20,-4.397867533070693e-16)
    sum e = 3.161610268696364e-09
    sum de = -2.3866952339088083e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.32e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042864402140896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.38651263110776 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0944945984053973, dt = 0.0023042864402140896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 321.44 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.443678328346574e-20,-1.2830948121419142e-20,2.2471655577485006e-16)
    sum a = (-4.721831954405613e-19,6.415445869011398e-20,-4.549475628781878e-16)
    sum e = 3.1616046410849763e-09
    sum de = -2.495534999595147e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.33e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304272086751964 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1418e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.27964084728887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.0967988848456116, dt = 0.002304272086751964 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.3%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 291.42 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.33550499736582e-20,-1.2683975730515327e-20,2.2365076538085066e-16)
    sum a = (-4.667753155446731e-19,6.341929555131841e-20,-4.69735531911731e-16)
    sum e = 3.1615987652904278e-09
    sum de = -2.6021177769918583e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.33e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042585156114416 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9360e+04 | 9216 |      1 | 3.139e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.427012880102676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.0991031569323635, dt = 0.0008968430676379313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 315.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.294265645627184e-20,-1.262794563465923e-20,2.2321244857337363e-16)
    sum a = (-4.64713138767769e-19,6.313996913964299e-20,-4.753178684474965e-16)
    sum e = 3.161596308697099e-09
    sum de = -2.6420227765450543e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.34e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304253744370585 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.024101045284015 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1363                                                    [SPH][rank=0]
Info: time since start : 547.526953712 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 31):
   -> t = 3.1000000000000014 >= 3.1000000000000014
--------------------------------
tfinal = 6.906747930733505
6.300000000000022
6.325000000000022
6.350000000000023
6.375000000000023
6.4000000000000234
6.425000000000024
6.450000000000024
6.4750000000000245
6.500000000000025
6.525000000000025
6.550000000000026
6.575000000000026
6.600000000000026
6.625000000000027
6.650000000000027
6.675000000000027
6.700000000000028
6.725000000000028
6.750000000000028
6.775000000000029
6.800000000000029
6.8250000000000295
6.85000000000003
6.87500000000003
6.9000000000000306
tfinal = 6.906747930733505
6.300000000000022
6.325000000000022
6.350000000000023
6.375000000000023
6.4000000000000234
6.425000000000024
6.450000000000024
6.4750000000000245
6.500000000000025
6.525000000000025
6.550000000000026
6.575000000000026
6.600000000000026
6.625000000000027
6.650000000000027
6.675000000000027
6.700000000000028
6.725000000000028
6.750000000000028
6.775000000000029
6.800000000000029
6.8250000000000295
6.85000000000003
6.87500000000003
6.9000000000000306
tfinal = 6.906747930733505
6.300000000000022
6.325000000000022
6.350000000000023
6.375000000000023
6.4000000000000234
6.425000000000024
6.450000000000024
6.4750000000000245
6.500000000000025
6.525000000000025
6.550000000000026
6.575000000000026
6.600000000000026
6.625000000000027
6.650000000000027
6.675000000000027
6.700000000000028
6.725000000000028
6.750000000000028
6.775000000000029
6.800000000000029
6.8250000000000295
6.85000000000003
6.87500000000003
6.9000000000000306
tfinal = 6.906747930733505
6.300000000000022
6.325000000000022
6.350000000000023
6.375000000000023
6.4000000000000234
6.425000000000024
6.450000000000024
6.4750000000000245
6.500000000000025
6.525000000000025
6.550000000000026
6.575000000000026
6.600000000000026
6.625000000000027
6.650000000000027
6.675000000000027
6.700000000000028
6.725000000000028
6.750000000000028
6.775000000000029
6.800000000000029
6.8250000000000295
6.85000000000003
6.87500000000003
6.9000000000000306
tfinal = 6.906747930733505
6.300000000000022
6.325000000000022
6.350000000000023
6.375000000000023
6.4000000000000234
6.425000000000024
6.450000000000024
6.4750000000000245
6.500000000000025
6.525000000000025
6.550000000000026
6.575000000000026
6.600000000000026
6.625000000000027
6.650000000000027
6.675000000000027
6.700000000000028
6.725000000000028
6.750000000000028
6.775000000000029
6.800000000000029
6.8250000000000295
6.85000000000003
6.87500000000003
6.9000000000000306
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[6.66889169e-14 2.27758786e-13 4.60610565e-13 ... 9.22779010e-13
 8.55753557e-13 4.07238566e-16]
(9216, 3)
[[6.66889169e-14 2.27758786e-13 4.60610565e-13 3.80931257e-13
  1.12217661e-17]
 [7.91516822e-06 4.73783837e-06 4.28902164e-12 1.08123466e-11
  3.73563526e-13]
 [1.12783538e-13 6.67266976e-13 2.81756988e-12 1.21190767e-12
  4.59444179e-16]
 ...
 [4.22243690e-05 5.33294713e-05 6.57633797e-05 6.20002185e-05
  6.72062297e-11]
 [3.27920383e-05 3.81947199e-05 3.54038944e-05 5.53924580e-06
  4.05560913e-12]
 [1.05469042e-13 6.60412595e-13 9.22779010e-13 8.55753557e-13
  4.07238566e-16]]
compute original rho
0.0006659462908260273 0.0
0.0010808191047313965 0.0
0.0018170982270067737 0.0
0.003288754952516579 0.0
0.006848573348550348 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.1000000000000014 -> 3.2000000000000015

[Simulation] Evolve until next trigger(s) :
   -> t = 3.2000000000000015 (current = 3.1000000000000014)
   -> iter = None (current = 1362)
   -> walltime = 575.4256270210001 (current = 553.700822128)

Info: evolve_until (target_time = 3.20s, niter_max = -1, max_walltime = 575.43s)      [SPH][rank=0]
---------------- t = 3.1000000000000014, dt = 0.002304253744370585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 299.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.187276417300013e-20,-1.2482580382667039e-20,2.2211469235537795e-16)
    sum a = (-4.593639614396146e-19,6.241339163525131e-20,-4.896576612857732e-16)
    sum e = 3.161590203012085e-09
    sum de = -2.746419037724037e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.34e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042408433758895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1581e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.42563778213039 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.26s (niter = 18) global walltime = 553.99s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.102304253744372, dt = 0.0023042408433758895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.7%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 338.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.082044184040772e-20,-1.2339602059164543e-20,2.209698819123336e-16)
    sum a = (-4.541021429595376e-19,6.169791692858421e-20,-5.035475790494179e-16)
    sum e = 3.1615837543189942e-09
    sum de = -2.847531730247728e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.35e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304228897502876 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1547e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.395690336891718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.104608494587748, dt = 0.002304228897502876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 279.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.978014880048483e-20,-1.2198260083882756e-20,2.1979359017147424e-16)
    sum a = (-4.489014587568362e-19,6.09907445361459e-20,-5.17059780893613e-16)
    sum e = 3.1615770764563913e-09
    sum de = -2.946336578750792e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.36e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042175306468913 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1755e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.582136759340774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1069127234852507, dt = 0.0023042175306468913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.3%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 295.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.875177401692471e-20,-1.2058538889655152e-20,2.1858660435692612e-16)
    sum a = (-4.4375850103568745e-19,6.029241407422907e-20,-5.301926618265192e-16)
    sum e = 3.1615701736178556e-09
    sum de = -3.0428130149365115e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.36e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304206693569321 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1690e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52388449445816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1092169410158976, dt = 0.002304206693569321 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 291.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.1992187500000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.773518794590243e-20,-1.1920417373289576e-20,2.1734980036937964e-16)
    sum a = (-4.386768274279895e-19,5.960176471431958e-20,-5.429452159856739e-16)
    sum e = 3.1615630511928144e-09
    sum de = -3.1369478306033613e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.37e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041963426819324 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55175236132505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.111521147709467, dt = 0.0023041963426819324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 286.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1992187500000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.673024511524381e-20,-1.1783878817776662e-20,2.160840557281507e-16)
    sum a = (-4.336507337339707e-19,5.891901013462801e-20,-5.553166091428222e-16)
    sum e = 3.1615557145925482e-09
    sum de = -3.2287288940361597e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.37e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304186443537064 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1717e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.547867965491395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.113825344052149, dt = 0.002304186443537064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 293.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 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.19921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.573682348976267e-20,-1.164890502451529e-20,2.147902496660323e-16)
    sum a = (-4.286846077087899e-19,5.824479408429543e-20,-5.673061777344321e-16)
    sum e = 3.1615481692549688e-09
    sum de = -3.3181451739974482e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.38e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304176972025855 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7763e+04 | 9216 |      1 | 3.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.988932503515787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.116129530495686, dt = 0.002304176972025855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 296.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.19921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.475477968790819e-20,-1.1515475425072753e-20,2.134692627344814e-16)
    sum a = (-4.237738737228714e-19,5.757656379778596e-20,-5.789134314153002e-16)
    sum e = 3.1615404206420196e-09
    sum de = -3.405186727940227e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.38e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041679151829704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.350550086708473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.118433707467712, dt = 0.0023041679151829704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.2%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 313.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.378399110232361e-20,-1.1383579421914274e-20,2.1212197639687604e-16)
    sum a = (-4.1892084919147877e-19,5.691734070777389e-20,-5.901380496717238e-16)
    sum e = 3.1615324742371624e-09
    sum de = -3.4898446996917245e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.38e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304159271575817 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1307e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.178363525044762 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.120737875382895, dt = 0.002304159271575817 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 283.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1987847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.282432185129424e-20,-1.125319218118536e-20,2.1074927263558385e-16)
    sum a = (-4.141206896253728e-19,5.626533799809979e-20,-6.009798924590865e-16)
    sum e = 3.161524335542851e-09
    sum de = -3.5721113128241136e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.39e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304151051281297 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1761e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5871099272814 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.123042034654471, dt = 0.002304151051281297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 271.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
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.1987847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.187565544088611e-20,-1.1124299529835154e-20,2.0935203351829626e-16)
    sum a = (-4.093787927928591e-19,5.562114295346924e-20,-6.114389863596243e-16)
    sum e = 3.1615160100780104e-09
    sum de = -3.6519798598473015e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.39e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304143275463828 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9966e+04 | 9216 |      1 | 3.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.971511116976785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1253461857057525, dt = 0.002304143275463828 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 272.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
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.1987847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.093785097628985e-20,-1.0996882542220762e-20,2.0793114082345492e-16)
    sum a = (-4.04690400368089e-19,5.498417939093676e-20,-6.215155294784462e-16)
    sum e = 3.1615075033755506e-09
    sum de = -3.729444692569328e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.40e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304135975583228 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1767e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59185751288699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1276503289812165, dt = 0.002304135975583228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.38 us   (7.2%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 312.33 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1987847222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.00107906167699e-20,-1.0870925404977252e-20,2.0648747563283966e-16)
    sum a = (-4.000539064893568e-19,5.435474227379903e-20,-6.312098945529023e-16)
    sum e = 3.1614988209798943e-09
    sum de = -3.804501213898218e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.40e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304129192269927 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.523606122807955 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1299544649568, dt = 0.002304129192269927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (58.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.909435634553822e-20,-1.0746410183307161e-20,2.050219179207722e-16)
    sum a = (-3.9547128617733715e-19,5.373214152910296e-20,-6.405226246146861e-16)
    sum e = 3.161489968444526e-09
    sum de = -3.8771458711575125e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.40e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041229739164015 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.542736053424967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1322585941490697, dt = 0.0023041229739164015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 303.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.818842130357037e-20,-1.0623322024431964e-20,2.0353534615974963e-16)
    sum a = (-3.9094184832916996e-19,5.311647456009046e-20,-6.494544318312681e-16)
    sum e = 3.161480951329566e-09
    sum de = -3.9473761437663304e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.41e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041173750381577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1665e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.500301750215396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.134562717122986, dt = 0.0023041173750381577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 350.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.729286365373923e-20,-1.0501644722169607e-20,2.0202863692777918e-16)
    sum a = (-3.864643448834316e-19,5.250834730807976e-20,-6.580061971751986e-16)
    sum e = 3.161471775199363e-09
    sum de = -4.01519053054073e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.41e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304112454466801 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.518965151851464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1368668344980244, dt = 0.002304112454466801 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 317.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.640756457821791e-20,-1.0381360091673069e-20,2.0050266451828553e-16)
    sum a = (-3.820371859628822e-19,5.190667809610666e-20,-6.6617896930628e-16)
    sum e = 3.1614624456201485e-09
    sum de = -4.08058854180233e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.41e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041082734380357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1703e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53389614421379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.139170946952491, dt = 0.0023041082734380357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 325.66 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.553240994657714e-20,-1.0262454719668034e-20,1.9895830055030413e-16)
    sum a = (-3.776608585793298e-19,5.1311915527927435e-20,-6.739739700916226e-16)
    sum e = 3.1614529681576863e-09
    sum de = -4.143570685995953e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.42e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041048936410487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1684e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.516606879951453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.141475055225929, dt = 0.0023041048936410487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 292.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.466728145594359e-20,-1.0144911809371351e-20,1.9739641356475107e-16)
    sum a = (-3.7333598401211594e-19,5.072361307913079e-20,-6.813925837004251e-16)
    sum e = 3.161443348374999e-09
    sum de = -4.2041384597037505e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.42e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304102375294226 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.294038939071015 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.83s (niter = 13) global walltime = 559.30s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.14377916011957, dt = 0.002304102375294226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.8%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.96 us    (0.5%)
   LB compute        : 337.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.381205964589878e-20,-1.0028717387991873e-20,1.9581786866228748e-16)
    sum a = (-3.6905964054359745e-19,5.0144210196315293e-20,-6.884363619195268e-16)
    sum e = 3.1614335918300833e-09
    sum de = -4.262294335331787e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.42e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041007753080577 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1682e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51473737253978 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.146083262494864, dt = 0.0023041007753080577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.5%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 265.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.296663561037114e-20,-9.913847373199182e-21,1.9422352711396627e-16)
    sum a = (-3.648330175359961e-19,4.956923573485865e-20,-6.951070191942915e-16)
    sum e = 3.1614237040736986e-09
    sum de = -4.318041747992621e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.43e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041001455924104 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8694e+04 | 9216 |      1 | 3.212e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.826034274089096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.148387363270172, dt = 0.0023041001455924104 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 309.16 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.213089306228837e-20,-9.800297313616049e-21,1.9261424599657016e-16)
    sum a = (-3.606542837749147e-19,4.9000707815286306e-20,-7.014064374598395e-16)
    sum e = 3.1614136906471975e-09
    sum de = -4.3713850817655005e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.43e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304100531560041 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8192e+04 | 9216 |      1 | 3.269e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.373632242227014 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1506914634157646, dt = 0.002304100531560041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 1.62 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 292.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.130472339046679e-20,-9.688049777294943e-21,1.9099087780581996e-16)
    sum a = (-3.565236770852633e-19,4.844017888580322e-20,-7.073366572850438e-16)
    sum e = 3.161403557080362e-09
    sum de = -4.422329660464018e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.43e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304101970867944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1757e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.582900750098002 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1529955639473246, dt = 0.002304101970867944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.52 us    (2.4%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 288.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.048801525490915e-20,-9.577084487665173e-21,1.8935427010831004e-16)
    sum a = (-3.524409402015354e-19,4.788539815326e-20,-7.128998847010077e-16)
    sum e = 3.1613933088893058e-09
    sum de = -4.470881733127166e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.44e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304104492431711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1778e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.601064108503017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1552996659181924, dt = 0.002304104492431711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.4%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 268.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.968065795820977e-20,-9.467390692595874e-21,1.8770526515986171e-16)
    sum a = (-3.4840293370727846e-19,4.733713493678783e-20,-7.180984799896202e-16)
    sum e = 3.1613829515743995e-09
    sum de = -4.517048459435013e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.44e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041081157334545 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.129e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.511706401646084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.157603770410624, dt = 0.0023041081157334545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.5%)
   LB compute        : 290.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.888255199990145e-20,-9.358952405420435e-21,1.8604469957076375e-16)
    sum a = (-3.444129268356513e-19,4.679556201210174e-20,-7.229349676448868e-16)
    sum e = 3.1613724906182463e-09
    sum de = -4.56083789712102e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.44e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304112850440955 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1806e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62716884145301 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1599078785263575, dt = 0.002304112850440955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 269.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.809358241770687e-20,-9.251754083454634e-21,1.843734039264498e-16)
    sum a = (-3.4046868658966064e-19,4.6259393128691615e-20,-7.274120267396194e-16)
    sum e = 3.161361931483678e-09
    sum de = -4.6022589898300034e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.45e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041186963378337 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1817e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.636585009746568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1622119913767985, dt = 0.0023041186963378337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.22 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.199001736111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.731364606687229e-20,-9.145784669776723e-21,1.826922024510356e-16)
    sum a = (-3.3656756135249695e-19,4.57285399104071e-20,-7.315324911366988e-16)
    sum e = 3.161351279611791e-09
    sum de = -4.64132155085926e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.45e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041256435587603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7749e+04 | 9216 |      1 | 3.321e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.97555846629186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1645161100731363, dt = 0.0023041256435587603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 300.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.654264647063206e-20,-9.041031923787028e-21,1.8100191265977814e-16)
    sum a = (-3.327126096290881e-19,4.520573243405144e-20,-7.352993505553902e-16)
    sum e = 3.1613405404200255e-09
    sum de = -4.678036246252244e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.45e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041336731115082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6285e+04 | 9216 |      1 | 3.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.65737329407633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.166820235716695, dt = 0.0023041336731115082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.7%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1.54 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.3%)
   LB compute        : 383.99 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.578047328368548e-20,-8.93747423476707e-21,1.7930334500739768e-16)
    sum a = (-3.2890272024652524e-19,4.468712080353462e-20,-7.387157395438016e-16)
    sum e = 3.1613297193002725e-09
    sum de = -4.71241458933542e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.46e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041427576655344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1486e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3391978371892 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.1691243693898064, dt = 0.0023041427576655344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.502702371778507e-20,-8.83510612225779e-21,1.775973025776927e-16)
    sum a = (-3.2513527896174228e-19,4.4175086412696117e-20,-7.4178495030980125e-16)
    sum e = 3.161318821616993e-09
    sum de = -4.744468920336142e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.46e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304152862543401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1606e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.44747853387727 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1714285121474717, dt = 0.002304152862543401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 283.47 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4282202730993e-20,-8.733909888857504e-21,1.7588458071120218e-16)
    sum a = (-3.2141073203039543e-19,4.36692061655851e-20,-7.445104181196111e-16)
    sum e = 3.161307852705376e-09
    sum de = -4.774212395212677e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.47e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.55e-02 |
+-------------+----------+
Info: cfl dt = 0.002304163946943857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1547e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.393872982276743 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.99s (niter = 10) global walltime = 563.28s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.1737326650100153, dt = 0.002304163946943857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.7%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.24 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 370.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.354591060277648e-20,-8.633871696290177e-21,1.7416596670043668e-16)
    sum a = (-3.1772975581975124e-19,4.316941031900684e-20,-7.468957302852332e-16)
    sum e = 3.1612968178695415e-09
    sum de = -4.801658968381477e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.47e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023041759652628114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4582e+04 | 9216 |      1 | 3.749e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.125571660291076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.176036828956959, dt = 0.0023041759652628114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 319.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.281804619538013e-20,-8.534977582492861e-21,1.7244223943496971e-16)
    sum a = (-3.1408988908956307e-19,4.267515809032088e-20,-7.489446096211151e-16)
    sum e = 3.1612857223807353e-09
    sum de = -4.82682338015603e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.48e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304188868526015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9755e+04 | 9216 |      1 | 3.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.781370090641126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.178341004922222, dt = 0.002304188868526015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 305.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.209851718687713e-20,-8.437215349778676e-21,1.7071416911325307e-16)
    sum a = (-3.104927253261469e-19,4.2186260214295663e-20,-7.506609313731802e-16)
    sum e = 3.16127457147559e-09
    sum de = -4.84972114370544e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.48e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042026058588206 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.30604898223861 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.180645193790748, dt = 0.0023042026058588206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 289.34 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.1990017361111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.138722333737984e-20,-8.340572972662092e-21,1.689825168742489e-16)
    sum a = (-3.0693527097474057e-19,4.170293521168562e-20,-7.520487016409547e-16)
    sum e = 3.1612633703543677e-09
    sum de = -4.87036852492019e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.49e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304217125946685 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57651614429732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.182949396396607, dt = 0.002304217125946685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 272.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.19921875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.06840763257543e-20,-8.245037172934056e-21,1.6724803452434603e-16)
    sum a = (-3.0342040631133087e-19,4.122525543566366e-20,-7.531120727738686e-16)
    sum e = 3.161252124179272e-09
    sum de = -4.888782531973228e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.49e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304232378436721 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1747e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57477084528775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1852536135225535, dt = 0.002304232378436721 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 325.89 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199435763888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.998897475896903e-20,-8.15059492546098e-21,1.6551146418269759e-16)
    sum a = (-2.9994587600226457e-19,4.075260056747474e-20,-7.538553309791493e-16)
    sum e = 3.1612408380727645e-09
    sum de = -4.904980900127756e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.50e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304248315236558 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9178e+04 | 9216 |      1 | 3.159e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.26266879167398 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.18755784590099, dt = 0.002304248315236558 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 322.62 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199110243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.930182802280638e-20,-8.057235321040162e-21,1.6377353798670748e-16)
    sum a = (-2.9650878183400664e-19,4.0286371280745525e-20,-7.54282889822052e-16)
    sum e = 3.1612295171158977e-09
    sum de = -4.918982073759759e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.50e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304264891667732 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.447152036363626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1898620942162266, dt = 0.002304264891667732 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 328.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199110243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.862255317453604e-20,-7.964942019799684e-21,1.6203497780453202e-16)
    sum a = (-2.9311244774142575e-19,3.982513392721759e-20,-7.543992955455232e-16)
    sum e = 3.1612181663467013e-09
    sum de = -4.930805193909851e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.51e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042820674411594 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.579116216017688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1921663591078944, dt = 0.0023042820674411594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 323.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.199327256944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.795105239939344e-20,-7.873705184256389e-21,1.6029649492094963e-16)
    sum a = (-2.897554045862818e-19,3.936864167249448e-20,-7.542092225590316e-16)
    sum e = 3.161206790758584e-09
    sum de = -4.9404700817356965e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.51e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023042998074267766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1479e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33424734839967 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.1944706411753354, dt = 0.0023042998074267766 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 292.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199327256944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.728723697132389e-20,-7.783513951421356e-21,1.5855878974565054e-16)
    sum a = (-2.8643549050559084e-19,3.89172071681968e-20,-7.537174697036236e-16)
    sum e = 3.1611953952987558e-09
    sum de = -4.947997223165632e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043180821972708 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1780e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.606171027150097 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.10s (niter = 7) global walltime = 566.33s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.1967749409827624, dt = 0.0023043180821972708 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 271.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199110243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.663102345465012e-20,-7.694356364579552e-21,1.5682255152440957e-16)
    sum a = (-2.8315517322713385e-19,3.8471807791740663e-20,-7.52928955174974e-16)
    sum e = 3.161183984866704e-09
    sum de = -4.953407754317999e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304336868336405 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8716e+04 | 9216 |      1 | 3.209e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.848414949755057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.1990792590649595, dt = 0.0009207409350420193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.5%)
   LB compute        : 266.38 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.199110243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.637409033513775e-20,-7.659447066677984e-21,1.5613020750817154e-16)
    sum a = (-2.81869877044756e-19,3.8297067696207e-20,-7.525363492537558e-16)
    sum e = 3.1611794177867314e-09
    sum de = -4.9541005014965676e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.00230434469061492 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2122e+04 | 9216 |      1 | 2.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.55311631468109 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1407                                                    [SPH][rank=0]
Info: time since start : 566.937393887 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 32):
   -> t = 3.2000000000000015 >= 3.2000000000000015
--------------------------------
tfinal = 7.534634106254732
6.925000000000031
6.950000000000031
6.975000000000032
7.000000000000032
7.025000000000032
7.050000000000033
7.075000000000033
7.100000000000033
7.125000000000034
7.150000000000034
7.1750000000000345
7.200000000000035
7.225000000000035
7.2500000000000355
7.275000000000036
7.300000000000036
7.325000000000037
7.350000000000037
7.375000000000037
7.400000000000038
7.425000000000038
7.450000000000038
7.475000000000039
7.500000000000039
7.525000000000039
tfinal = 7.534634106254732
6.925000000000031
6.950000000000031
6.975000000000032
7.000000000000032
7.025000000000032
7.050000000000033
7.075000000000033
7.100000000000033
7.125000000000034
7.150000000000034
7.1750000000000345
7.200000000000035
7.225000000000035
7.2500000000000355
7.275000000000036
7.300000000000036
7.325000000000037
7.350000000000037
7.375000000000037
7.400000000000038
7.425000000000038
7.450000000000038
7.475000000000039
7.500000000000039
7.525000000000039
tfinal = 7.534634106254732
6.925000000000031
6.950000000000031
6.975000000000032
7.000000000000032
7.025000000000032
7.050000000000033
7.075000000000033
7.100000000000033
7.125000000000034
7.150000000000034
7.1750000000000345
7.200000000000035
7.225000000000035
7.2500000000000355
7.275000000000036
7.300000000000036
7.325000000000037
7.350000000000037
7.375000000000037
7.400000000000038
7.425000000000038
7.450000000000038
7.475000000000039
7.500000000000039
7.525000000000039
tfinal = 7.534634106254732
6.925000000000031
6.950000000000031
6.975000000000032
7.000000000000032
7.025000000000032
7.050000000000033
7.075000000000033
7.100000000000033
7.125000000000034
7.150000000000034
7.1750000000000345
7.200000000000035
7.225000000000035
7.2500000000000355
7.275000000000036
7.300000000000036
7.325000000000037
7.350000000000037
7.375000000000037
7.400000000000038
7.425000000000038
7.450000000000038
7.475000000000039
7.500000000000039
7.525000000000039
tfinal = 7.534634106254732
6.925000000000031
6.950000000000031
6.975000000000032
7.000000000000032
7.025000000000032
7.050000000000033
7.075000000000033
7.100000000000033
7.125000000000034
7.150000000000034
7.1750000000000345
7.200000000000035
7.225000000000035
7.2500000000000355
7.275000000000036
7.300000000000036
7.325000000000037
7.350000000000037
7.375000000000037
7.400000000000038
7.425000000000038
7.450000000000038
7.475000000000039
7.500000000000039
7.525000000000039
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[7.04271706e-14 2.47517650e-13 4.57459382e-13 ... 8.12393578e-13
 8.11872129e-13 2.37094422e-15]
(9216, 3)
[[7.04271706e-14 2.47517650e-13 4.57459382e-13 2.40584371e-13
  2.31973456e-16]
 [7.65973005e-06 3.99375742e-06 4.34795185e-12 1.02517880e-11
  2.12394130e-14]
 [1.12598144e-13 7.15888317e-13 1.93064132e-12 1.17651157e-12
  2.05572516e-15]
 ...
 [4.22747868e-05 5.33774571e-05 6.53793374e-05 5.73671213e-05
  6.79682813e-11]
 [3.26758730e-05 3.76919029e-05 3.33956303e-05 1.06406827e-06
  3.14725953e-12]
 [1.03220603e-13 6.75322112e-13 8.12393578e-13 8.11872129e-13
  2.37094422e-15]]
compute original rho
0.0006668752140970005 0.0
0.0010847231161932285 0.0
0.0018328426307328578 0.0
0.0033496266107546756 0.0
0.007096151932158968 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.2000000000000015 -> 3.3000000000000016

[Simulation] Evolve until next trigger(s) :
   -> t = 3.3000000000000016 (current = 3.2000000000000015)
   -> iter = None (current = 1406)
   -> walltime = 575.4256270210001 (current = 572.924037737)

Info: evolve_until (target_time = 3.30s, niter_max = -1, max_walltime = 575.43s)      [SPH][rank=0]
---------------- t = 3.2000000000000015, dt = 0.00230434469061492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.12 us    (2.4%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 312.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 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.198893229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.572515669023999e-20,-7.571277709788106e-21,1.5439628511154225e-16)
    sum a = (-2.786253954425107e-19,3.785680314595731e-20,-7.513366068875321e-16)
    sum e = 3.1611680015533876e-09
    sum de = -4.957480028158388e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023043639852001487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5877e+04 | 9216 |      1 | 3.562e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.292500544793818 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.36s (niter = 1) global walltime = 573.28s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.2023043446906163, dt = 0.0023043639852001487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 294.97 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.5%)
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.198893229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.508684059948595e-20,-7.484549195101608e-21,1.5266631440362958e-16)
    sum a = (-2.7543399739672753e-19,3.7423607732650675e-20,-7.49856774745574e-16)
    sum e = 3.1611565738211324e-09
    sum de = -4.957895947896419e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304383940207891 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0586e+04 | 9216 |      1 | 3.013e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.531814724132797 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.33s (niter = 1) global walltime = 573.58s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.2046087086758166, dt = 0.002304383940207891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 317.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 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.198893229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.445581198597557e-20,-7.398809935872803e-21,1.5094006153052378e-16)
    sum a = (-2.7227928156676144e-19,3.699333764276226e-20,-7.480977478889073e-16)
    sum e = 3.161145148446166e-09
    sum de = -4.956277362660077e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304404369974698 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1469e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.326718600262524 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.32s (niter = 1) global walltime = 573.88s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.2069130926160243, dt = 0.002304404369974698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 301.66 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 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.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.383200531857004e-20,-7.31405808465085e-21,1.4921816854778053e-16)
    sum a = (-2.691599784997107e-19,3.6570656440786515e-20,-7.460649660894468e-16)
    sum e = 3.161133729043981e-09
    sum de = -4.9526424269183554e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304425276378207 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.288039624911367 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 574.17s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.209217496985999, dt = 0.002304425276378207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.49 us   (7.5%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 298.47 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.32153402997277e-20,-7.230270718300958e-21,1.4750125975769903e-16)
    sum a = (-2.660757086021952e-19,3.6151302516476196e-20,-7.437639544529749e-16)
    sum e = 3.1611223202379364e-09
    sum de = -4.947015541523467e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023044466641478985 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1299e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.173985845108575 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 574.46s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.211521922262377, dt = 0.0023044466641478985 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.48 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.260573681236075e-20,-7.14744516522656e-21,1.4578994664850983e-16)
    sum a = (-2.6302794711707533e-19,3.57376680930997e-20,-7.412003314135564e-16)
    sum e = 3.161110926588064e-09
    sum de = -4.939421618693463e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304468540975404 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1640e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48124833950786 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 574.76s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.213826368926525, dt = 0.002304468540975404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 300.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.200310872718877e-20,-7.065565440961709e-21,1.440848276687635e-16)
    sum a = (-2.6001532743908233e-19,3.5327725169185474e-20,-7.383798153791265e-16)
    sum e = 3.161099552596499e-09
    sum de = -4.929886099058828e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304490916509533 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1649e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49023188310109 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 575.05s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.2161308374675004, dt = 0.002304490916509533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 273.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1407377181497955e-20,-6.984625342406878e-21,1.4238648798642926e-16)
    sum a = (-2.5703690962176046e-19,3.492294998449108e-20,-7.353082180038027e-16)
    sum e = 3.1610882027062373e-09
    sum de = -4.91843494084608e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.58e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023045138013165272 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8744e+04 | 9216 |      1 | 3.206e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.87529538539637 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 575.37s (max_walltime = 575.43s)  [SPH][rank=0]
---------------- t = 3.21843532838401, dt = 0.0023045138013165272 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 271.69 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.081846386273853e-20,-6.904611376238881e-21,1.4069549928403595e-16)
    sum a = (-2.5409241774023966e-19,3.452276705863054e-20,-7.319914416100664e-16)
    sum e = 3.1610768812999463e-09
    sum de = -4.9050945954241955e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.59e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023045372058443613 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0922e+04 | 9216 |      1 | 2.980e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.836049985087385 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 575.67s > 575.43s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 18):
   -> walltime = 575.667307107 >= 575.4256270210001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000018.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (54.6%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000018.sham              [Shamrock Dump][rank=0]
              - took 1.42 ms, bandwidth = 2.45 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 575.667307107 -> 605.667307107

[Simulation] Evolve until next trigger(s) :
   -> t = 3.3000000000000016 (current = 3.220739842185327)
   -> iter = None (current = 1415)
   -> walltime = 605.667307107 (current = 575.671311887)

Info: evolve_until (target_time = 3.30s, niter_max = -1, max_walltime = 605.67s)      [SPH][rank=0]
---------------- t = 3.220739842185327, dt = 0.0023045372058443613 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (0.8%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 335.05 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.198459201388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.023629124179432e-20,-6.825513454099763e-21,1.3901241955081557e-16)
    sum a = (-2.511812325320798e-19,3.412751342649461e-20,-7.2843546945235e-16)
    sum e = 3.1610655926988618e-09
    sum de = -4.88989199673273e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.60e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023045611394325156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1713e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.54795875390567 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.27s (niter = 25) global walltime = 575.96s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.223044379391171, dt = 0.0023045611394325156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.9%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 290.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.198459201388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.96607831759625e-20,-6.747319992285707e-21,1.3733779291051072e-16)
    sum a = (-2.4830368176300795e-19,3.373698835303188e-20,-7.246463701476997e-16)
    sum e = 3.1610543411617105e-09
    sum de = -4.872854542708385e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304585609406712 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8828e+04 | 9216 |      1 | 3.197e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.951315370115555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2253489405306035, dt = 0.002304585609406712 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 302.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9091861806028485e-20,-6.6700201245068084e-21,1.3567214941939852e-16)
    sum a = (-2.454586296391743e-19,3.3349814183479e-20,-7.20630285896376e-16)
    sum e = 3.161043130883658e-09
    sum de = -4.854010076925771e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023046106202944125 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1780e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.608865681179537 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2276535261400103, dt = 0.0023046106202944125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 343.52 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.852945355525453e-20,-6.5936080492832905e-21,1.3401600491422068e-16)
    sum a = (-2.4264717556437864e-19,3.2968887359842894e-20,-7.163934371622332e-16)
    sum e = 3.1610319659953317e-09
    sum de = -4.833386878488556e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023046361731922298 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1706e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.54305783447547 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2299581367603047, dt = 0.0023046361731922298 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.4%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 271.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.797347982500556e-20,-6.518065629907489e-21,1.323698608279843e-16)
    sum a = (-2.3986756511391927e-19,3.259000879691885e-20,-7.119421102652486e-16)
    sum e = 3.1610208505618444e-09
    sum de = -4.811013634070681e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.00230466226530937 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1774e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.604560233930624 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.232262772933497, dt = 0.00230466226530937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 297.70 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7423869063147516e-20,-6.443393163467984e-21,1.3073420405591118e-16)
    sum a = (-2.371191330008335e-19,3.221675976330258e-20,-7.072826613962235e-16)
    sum e = 3.1610097885819144e-09
    sum de = -4.786919434959466e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.64e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023046888897082767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.664590784679678 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2345674351988065, dt = 0.0023046888897082767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.9%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 278.68 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 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.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6880550320526085e-20,-6.3695737313202905e-21,1.2910950679245254e-16)
    sum a = (-2.344028686775376e-19,3.1848489353319194e-20,-7.024215023851046e-16)
    sum e = 3.1609987839869486e-09
    sum de = -4.761133750557956e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.65e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047160352505608 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1664e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50652020217897 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.236872124088515, dt = 0.0023047160352505608 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.76 us   (3.5%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 310.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.634344837871405e-20,-6.2965963626433346e-21,1.274962264218859e-16)
    sum a = (-2.317168956291276e-19,3.148377186527962e-20,-6.973651054371131e-16)
    sum e = 3.1609878406402317e-09
    sum de = -4.7336864154916806e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.67e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047436867540553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1651e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.494765768110597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2391768401237657, dt = 0.0023047436867540553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 306.09 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.581249553232429e-20,-6.2244546579290295e-21,1.258948053773497e-16)
    sum a = (-2.2906263805204365e-19,3.1122023205429716e-20,-6.921199964374505e-16)
    sum e = 3.160976962336117e-09
    sum de = -4.7046076128261676e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.68e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023047718253562687 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1814e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.641922337046555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2414815838105198, dt = 0.0023047718253562687 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.0%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 276.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
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.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5287617060277866e-20,-6.153142353559808e-21,1.2430567102574901e-16)
    sum a = (-2.2643873371592144e-19,3.076620114146133e-20,-6.866927422393673e-16)
    sum e = 3.160966152799256e-09
    sum de = -4.673927860792828e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.69e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023048004290717535 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1329e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.205812206829222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.243786355635876, dt = 0.0023048004290717535 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.64 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 304.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.476874463660262e-20,-6.082642392800012e-21,1.2272923559017363e-16)
    sum a = (-2.2384390240004867e-19,3.041322188730881e-20,-6.810899584457791e-16)
    sum e = 3.1609554156838597e-09
    sum de = -4.641677992411603e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.70e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304829473526372 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1755e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58951163372679 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2460911560649475, dt = 0.002304829473526372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 329.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.425581301184369e-20,-6.01295189774156e-21,1.2116589602887948e-16)
    sum a = (-2.212797829264587e-19,3.0064911406603835e-20,-6.753182964252734e-16)
    sum e = 3.1609447545730125e-09
    sum de = -4.607889142188534e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023048589328415027 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1425e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.292456244131028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.248395985538474, dt = 0.0023048589328415027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 319.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.374874924305231e-20,-5.944057982992526e-21,1.196160339694584e-16)
    sum a = (-2.1874444181186153e-19,2.972038395285109e-20,-6.693844431203252e-16)
    sum e = 3.1609341729779726e-09
    sum de = -4.5725927305235785e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023048887806386624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1794e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.624876628663994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2507008444713152, dt = 0.0023048887806386624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 291.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3247489453983057e-20,-5.8759527641520885e-21,1.1808001562408187e-16)
    sum a = (-2.162368849186439e-19,2.937926927005456e-20,-6.63295107201404e-16)
    sum e = 3.160923674337563e-09
    sum de = -4.535820442777251e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.70e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304918991128246 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1323e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.201622941684132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2530057332519537, dt = 0.002304918991128246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.4%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.87 us    (0.6%)
   LB compute        : 279.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.275197074108052e-20,-5.80862915345695e-21,1.165581917555758e-16)
    sum a = (-2.137599843363517e-19,2.904359678130968e-20,-6.570570292553941e-16)
    sum e = 3.160913262017547e-09
    sum de = -4.497604218856571e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.69e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023049495402429165 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1788e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.620608205304507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.255310652243082, dt = 0.0023049495402429165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.8%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 345.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
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.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.226211937356104e-20,-5.74207194712393e-21,1.1505089759008962e-16)
    sum a = (-2.113113962803591e-19,2.871000358472924e-20,-6.506769606948944e-16)
    sum e = 3.1609029393100656e-09
    sum de = -4.457976232878179e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.30e-03 |
|       force | 1.68e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002304980406777741 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1455e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.321540004359864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.257615601783325, dt = 0.002304980406777741 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.1%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.63 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 320.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.177787261511908e-20,-5.676280354017144e-21,1.1355845281272147e-16)
    sum a = (-2.0888943245568186e-19,2.838174489309172e-20,-6.441616756306695e-16)
    sum e = 3.1608927094330894e-09
    sum de = -4.416968881387447e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.67e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305011573492176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1767e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60207492203789 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2599205821901025, dt = 0.002305011573492176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 286.07 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1986762152777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.129917131211731e-20,-5.6112385046549255e-21,1.1208116149714556e-16)
    sum a = (-2.0649557990289795e-19,2.8056205215558975e-20,-6.375179481896989e-16)
    sum e = 3.160882575529904e-09
    sum de = -4.3746147631489406e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.67e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050430281359212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.654485143460725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2622255937635947, dt = 0.0023050430281359212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.2%)
   patch tree reduce : 2.28 us    (0.4%)
   gen split merge   : 1.56 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.2%)
   LB compute        : 525.74 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.198459201388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.082594907075967e-20,-5.54694294290679e-21,1.1061931212993821e-16)
    sum a = (-2.0412953139280346e-19,2.7734979400653106e-20,-6.307525700045831e-16)
    sum e = 3.1608725406686355e-09
    sum de = -4.330946668582842e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.66e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023050747643585836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1714e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55563605929088 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2645306367917306, dt = 0.0023050747643585836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 274.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (57.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.198459201388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.035814216004404e-20,-5.4833818716052806e-21,1.0917317754219472e-16)
    sum a = (-2.0179052621578428e-19,2.7416520838234835e-20,-6.238723222278871e-16)
    sum e = 3.160862607841798e-09
    sum de = -4.285997558862116e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.65e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051067824684177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.012e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.548309161143052 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.266835711556089, dt = 0.0023051067824684177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 266.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9895689234479573e-20,-5.4205509053928514e-21,1.0774301496354217e-16)
    sum a = (-1.9947821931335728e-19,2.7102591697114695e-20,-6.168839846056752e-16)
    sum e = 3.1608527799658874e-09
    sum de = -4.239800552990731e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.65e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023051390900103107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1802e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.635224259808318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2691408183385575, dt = 0.0023051390900103107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.92 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.943852931828565e-20,-5.358437460917635e-21,1.0632906600881237e-16)
    sum a = (-1.971924847023592e-19,2.679252634482685e-20,-6.097943295615309e-16)
    sum e = 3.1608430598810006e-09
    sum de = -4.192388910939525e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.64e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305171702137432 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1851e+04 | 9216 |      1 | 2.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67973524760864 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.271445957428568, dt = 0.002305171702137432 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 281.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.898660117600423e-20,-5.297033501383368e-21,1.0493155669687941e-16)
    sum a = (-1.9493267265226551e-19,2.6486307325766708e-20,-6.026101171089038e-16)
    sum e = 3.160833450350503e-09
    sum de = -4.1437960204025935e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.64e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023052046417585607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.059e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.13275571251958 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2737511291307055, dt = 0.0023052046417585607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 301.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8539846146944956e-20,-5.236330123485432e-21,1.0355069747935621e-16)
    sum a = (-1.9269928149946085e-19,2.6181854629255592e-20,-5.953380797505769e-16)
    sum e = 3.160823954060714e-09
    sum de = -4.094055378223666e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023052379394496746 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1718e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.560784039254035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.276056333772464, dt = 0.0023052379394496746 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.3%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 282.53 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.809820270076187e-20,-5.176325616763833e-21,1.021866833182557e-16)
    sum a = (-1.904903602280278e-19,2.588175291163799e-20,-5.879849429225156e-16)
    sum e = 3.1608145736206397e-09
    sum de = -4.043200575685332e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305271633127552 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1881e+04 | 9216 |      1 | 2.891e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70843424793512 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2783615717119137, dt = 0.002305271633127552 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 300.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7661616732122846e-20,-5.117007055664671e-21,1.008396936736275e-16)
    sum a = (-1.8830876882610407e-19,2.5585524413764614e-20,-5.805573837570223e-16)
    sum e = 3.1608053115617666e-09
    sum de = -3.991265285114966e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305305767486462 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.618562180151624 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.57s (niter = 19) global walltime = 583.29s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.2806668433450414, dt = 0.002305305767486462 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 307.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7230022018883017e-20,-5.058366082646051e-21,9.950989265921039e-17)
    sum a = (-1.8615002887919984e-19,2.529222038325422e-20,-5.73062063034116e-16)
    sum e = 3.160796170337846e-09
    sum de = -3.938283241362813e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305340393212645 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1673e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.522168709164912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.282972149112528, dt = 0.002305340393212645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 278.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6803371106093144e-20,-5.000396961697715e-21,9.819742904035486e-17)
    sum a = (-1.8401644805037092e-19,2.5002146540760877e-20,-5.655055926448835e-16)
    sum e = 3.1607871523247817e-09
    sum de = -3.884288231123833e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023053755659940044 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1798e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.63516057015856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.2852774895057406, dt = 0.0023053755659940044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 329.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.638160338328153e-20,-4.943092000426091e-21,9.69024363830779e-17)
    sum a = (-1.8190797507533228e-19,2.4715905457848108e-20,-5.578945515978551e-16)
    sum e = 3.16077825982048e-09
    sum de = -3.829314078282582e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023054113453508207 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.534746066121986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2875828650717347, dt = 0.0023054113453508207 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 354.35 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
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.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5964661052415044e-20,-4.886441570410355e-21,9.562503310801877e-17)
    sum a = (-1.7982298235979826e-19,2.4431895505772204e-20,-5.502354684856558e-16)
    sum e = 3.160769495044807e-09
    sum de = -3.773394626745166e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023054477933192315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1730e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.574290754781618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2898882764170856, dt = 0.0023054477933192315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 295.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.555249190512717e-20,-4.830442468595481e-21,9.436532263004417e-17)
    sum a = (-1.7776240936828084e-19,2.4151843623039392e-20,-5.425348203855218e-16)
    sum e = 3.1607608601395527e-09
    sum de = -3.716563723367924e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023054849730233923 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1793e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.631293634726973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2921937242104047, dt = 0.0023054849730233923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.65 us    (0.5%)
   LB compute        : 327.61 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.514503871555536e-20,-4.775083607525619e-21,9.312339347555208e-17)
    sum a = (-1.7572491159890163e-19,2.38746136394877e-20,-5.347990281951067e-16)
    sum e = 3.160752357168442e-09
    sum de = -3.658855211399824e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305522947177405 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1564e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.425785905030285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.294499209183428, dt = 0.002305522947177405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.9%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 284.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.474224956141842e-20,-4.720359795302745e-21,9.189931942009627e-17)
    sum a = (-1.7371163599843572e-19,2.360194762973636e-20,-5.270344600299072e-16)
    sum e = 3.160743988117185e-09
    sum de = -3.600302910417963e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305561776558796 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1818e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.655292736214385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.2968047321306053, dt = 0.002305561776558796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 310.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1982421875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4344067480932534e-20,-4.666258309383489e-21,9.069315960923769e-17)
    sum a = (-1.7171851656195782e-19,2.3330869726797012e-20,-5.192474112557769e-16)
    sum e = 3.16073575489356e-09
    sum de = -3.540940604106109e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023056015184979854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.977e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.884716144809527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.299110293907164, dt = 0.0008897060928374501 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 309.13 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.198025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.419358611601347e-20,-4.645813209145868e-21,9.024015878483077e-17)
    sum a = (-1.7096798130519163e-19,2.3229263427530954e-20,-5.162763387732728e-16)
    sum e = 3.1607326728748515e-09
    sum de = -3.5174906774678164e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305617554400392 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1941e+04 | 9216 |      1 | 2.885e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.100875457023305 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1451                                                    [SPH][rank=0]
Info: time since start : 585.9180515720001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 33):
   -> t = 3.3000000000000016 >= 3.3000000000000016
--------------------------------
tfinal = 8.16252028177596
7.55000000000004
7.57500000000004
7.6000000000000405
7.625000000000041
7.650000000000041
7.675000000000042
7.700000000000042
7.725000000000042
7.750000000000043
7.775000000000043
7.800000000000043
7.825000000000044
7.850000000000044
7.875000000000044
7.900000000000045
7.925000000000045
7.9500000000000455
7.975000000000046
8.000000000000046
8.025000000000047
8.050000000000047
8.075000000000047
8.100000000000048
8.125000000000048
8.150000000000048
tfinal = 8.16252028177596
7.55000000000004
7.57500000000004
7.6000000000000405
7.625000000000041
7.650000000000041
7.675000000000042
7.700000000000042
7.725000000000042
7.750000000000043
7.775000000000043
7.800000000000043
7.825000000000044
7.850000000000044
7.875000000000044
7.900000000000045
7.925000000000045
7.9500000000000455
7.975000000000046
8.000000000000046
8.025000000000047
8.050000000000047
8.075000000000047
8.100000000000048
8.125000000000048
8.150000000000048
tfinal = 8.16252028177596
7.55000000000004
7.57500000000004
7.6000000000000405
7.625000000000041
7.650000000000041
7.675000000000042
7.700000000000042
7.725000000000042
7.750000000000043
7.775000000000043
7.800000000000043
7.825000000000044
7.850000000000044
7.875000000000044
7.900000000000045
7.925000000000045
7.9500000000000455
7.975000000000046
8.000000000000046
8.025000000000047
8.050000000000047
8.075000000000047
8.100000000000048
8.125000000000048
8.150000000000048
tfinal = 8.16252028177596
7.55000000000004
7.57500000000004
7.6000000000000405
7.625000000000041
7.650000000000041
7.675000000000042
7.700000000000042
7.725000000000042
7.750000000000043
7.775000000000043
7.800000000000043
7.825000000000044
7.850000000000044
7.875000000000044
7.900000000000045
7.925000000000045
7.9500000000000455
7.975000000000046
8.000000000000046
8.025000000000047
8.050000000000047
8.075000000000047
8.100000000000048
8.125000000000048
8.150000000000048
tfinal = 8.16252028177596
7.55000000000004
7.57500000000004
7.6000000000000405
7.625000000000041
7.650000000000041
7.675000000000042
7.700000000000042
7.725000000000042
7.750000000000043
7.775000000000043
7.800000000000043
7.825000000000044
7.850000000000044
7.875000000000044
7.900000000000045
7.925000000000045
7.9500000000000455
7.975000000000046
8.000000000000046
8.025000000000047
8.050000000000047
8.075000000000047
8.100000000000048
8.125000000000048
8.150000000000048
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[6.63910126e-14 2.36251529e-13 3.55744699e-13 ... 7.40039673e-13
 3.18401833e-13 2.23336749e-15]
(9216, 3)
[[6.63910126e-14 2.36251529e-13 3.55744699e-13 1.64159157e-13
  0.00000000e+00]
 [7.40483934e-06 3.26348122e-06 3.84913728e-12 6.53169471e-12
  8.96163442e-16]
 [1.07642508e-13 6.70953404e-13 8.14621878e-13 7.07699385e-13
  3.58728986e-15]
 ...
 [4.23210956e-05 5.34144631e-05 6.49261389e-05 5.24551853e-05
  6.05365691e-11]
 [3.25568781e-05 3.71739263e-05 3.13860479e-05 1.77927613e-11
  2.65976785e-12]
 [9.62381184e-14 6.21655154e-13 7.40039673e-13 3.18401833e-13
  2.23336749e-15]]
compute original rho
0.0006678097336748969 0.0
0.001088639424218556 0.0
0.0018485560489351694 0.0
0.0034102328279008278 0.0
0.0073457401191066906 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.3000000000000016 -> 3.4000000000000017

[Simulation] Evolve until next trigger(s) :
   -> t = 3.4000000000000017 (current = 3.3000000000000016)
   -> iter = None (current = 1450)
   -> walltime = 605.667307107 (current = 592.3453596180001)

Info: evolve_until (target_time = 3.40s, niter_max = -1, max_walltime = 605.67s)      [SPH][rank=0]
---------------- t = 3.3000000000000016, dt = 0.002305617554400392 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 325.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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.198025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3799733227925207e-20,-4.592300564346245e-21,8.905114468565343e-17)
    sum a = (-1.6899885304795486e-19,2.296251167348177e-20,-5.08429644913856e-16)
    sum e = 3.1607245733726636e-09
    sum de = -3.4573991072233253e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023056581940744192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7724e+04 | 9216 |      1 | 3.324e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.96947021606287 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 3.00s (niter = 9) global walltime = 592.68s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.302305617554402, dt = 0.0023056581940744192 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 287.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.198025173611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3412349613123865e-20,-4.539664393027092e-21,8.788792544630577e-17)
    sum a = (-1.6706132390235025e-19,2.2697822899233324e-20,-5.006142156580973e-16)
    sum e = 3.1607166710664803e-09
    sum de = -3.396238066276596e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305700315839833 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.582517155144618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3046112757484765, dt = 0.002305700315839833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 276.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.1978081597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3029389994987106e-20,-4.487635209438189e-21,8.67426689456478e-17)
    sum a = (-1.6514757175052495e-19,2.2437773310610482e-20,-4.927968883744009e-16)
    sum e = 3.160708910867756e-09
    sum de = -3.3343832773620248e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305743497442065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0146e+04 | 9216 |      1 | 3.057e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.15158051439737 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3069169760643162, dt = 0.002305743497442065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 312.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.1978081597222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2650808274169897e-20,-4.436199085626758e-21,8.561541793148245e-17)
    sum a = (-1.632540201763301e-19,2.218110285371394e-20,-4.849838706393411e-16)
    sum e = 3.1607012939447005e-09
    sum de = -3.2718658959587606e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002305787768519021 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1719e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.568865123306068 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3092227195617583, dt = 0.002305787768519021 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 284.04 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.197265625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.227656215406102e-20,-4.385350164546456e-21,8.45061554622212e-17)
    sum a = (-1.6138343560480658e-19,2.1926377737242627e-20,-4.771810484438063e-16)
    sum e = 3.160693821791041e-09
    sum de = -3.2087193050299642e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023058331462420946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1927e+04 | 9216 |      1 | 2.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.75637150313603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3115285073302774, dt = 0.0023058331462420946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 352.88 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1970486111111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.19065954299024e-20,-4.335085354275391e-21,8.341485141001427e-17)
    sum a = (-1.5953354593990327e-19,2.1675370023056803e-20,-4.693942296222229e-16)
    sum e = 3.160686495821186e-09
    sum de = -3.1449767550499537e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023058796377414584 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1450e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32736117642165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3138343404765194, dt = 0.0023058796377414584 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 276.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1968315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.154086312688427e-20,-4.285393926614829e-21,8.234146236615329e-17)
    sum a = (-1.5770441725632108e-19,2.1426520232680342e-20,-4.616291236952148e-16)
    sum e = 3.1606793173732985e-09
    sum de = -3.0806713661808944e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023059272398641855 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1854e+04 | 9216 |      1 | 2.893e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.691870122836036 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.316140220114261, dt = 0.0023059272398641855 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 324.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1968315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1179317092449425e-20,-4.2362728166009175e-21,8.128593189504233e-17)
    sum a = (-1.5589608805894072e-19,2.1181151272952865e-20,-4.538913457759962e-16)
    sum e = 3.1606722877096304e-09
    sum de = -3.0158361164391354e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023059759391673112 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48827506422064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.318446147354125, dt = 0.0023059759391673112 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 274.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1968315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.082190933468852e-20,-4.187712464033173e-21,8.024819074903483e-17)
    sum a = (-1.5410997171917479e-19,2.093860724271003e-20,-4.461864144999945e-16)
    sum e = 3.16066540801688e-09
    sum de = -2.9505038347460308e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002306025712218411 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1932e+04 | 9216 |      1 | 2.886e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.76325164594231 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3207521232932926, dt = 0.002306025712218411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.63 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 307.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.1968315972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0468587238113656e-20,-4.139707136202325e-21,7.922815709789379e-17)
    sum a = (-1.523422021815152e-19,2.0698769068848845e-20,-4.385197480808875e-16)
    sum e = 3.160658679406572e-09
    sum de = -2.8847071830118954e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023060765261261563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.596772324422464 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.37s (niter = 8) global walltime = 595.31s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.323058149005511, dt = 0.0023060765261261563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 262.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1963975694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.011931275558065e-20,-4.092250803860684e-21,7.822573676545471e-17)
    sum a = (-1.5059604664131312e-19,2.046143485877275e-20,-4.3089665756156006e-16)
    sum e = 3.160652102915479e-09
    sum de = -2.8184786482621654e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002306128339313128 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1176e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.08400837721851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3253642255316374, dt = 0.002306128339313128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 310.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1961805555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9774032230691236e-20,-4.045337811872108e-21,7.724082348730486e-17)
    sum a = (-1.4887040659263665e-19,2.0227392082074704e-20,-4.233223549177657e-16)
    sum e = 3.1606456795060495e-09
    sum de = -2.7518505311366835e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023061811025045335 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1739e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59167114561249 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3276703538709507, dt = 0.0023061811025045335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 303.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1961805555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9432699883195517e-20,-3.998959651399591e-21,7.627329912912355e-17)
    sum a = (-1.4716332005149805e-19,1.999479381167253e-20,-4.1580193336271147e-16)
    sum e = 3.1606394100668503e-09
    sum de = -2.6848549333341297e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002306234759903196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8414e+04 | 9216 |      1 | 3.243e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.596807729797593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.329976534973455, dt = 0.002306234759903196 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 285.17 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1961805555555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.90952752122177e-20,-3.953115240270471e-21,7.532303398408983e-17)
    sum a = (-1.4547668447644605e-19,1.9764900594412512e-20,-4.083403744543676e-16)
    sum e = 3.1606332954130443e-09
    sum de = -2.617523750164564e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023062892505189767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1733e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58736152831529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.332282769733358, dt = 0.0023062892505189767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 266.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.195963541666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.876170875140884e-20,-3.90779659670489e-21,7.438988702123533e-17)
    sum a = (-1.438088324303154e-19,1.953973908276398e-20,-4.009425450047955e-16)
    sum e = 3.160627336286873e-09
    sum de = -2.549888657654169e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023063445096125085 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1328e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.223587372961568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.334589058983877, dt = 0.0023063445096125085 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.5%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.28 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.5%)
   LB compute        : 259.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 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.1957465277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.843195940791663e-20,-3.862990888676835e-21,7.347370615110746e-17)
    sum a = (-1.4215925914860487e-19,1.93154083518221e-20,-3.9361319906182973e-16)
    sum e = 3.160621533358148e-09
    sum de = -2.481981104616249e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023064004702129898 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1867e+04 | 9216 |      1 | 2.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.709058875792028 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3368954034934895, dt = 0.0023064004702129898 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 281.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1959635416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.810598532306043e-20,-3.818700459885105e-21,7.257432848221187e-17)
    sum a = (-1.4052984789343036e-19,1.9093291775855546e-20,-3.863569575707903e-16)
    sum e = 3.1606158872247858e-09
    sum de = -2.4138322986028695e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002306457064668448 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.75540307957206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.3392018039637024, dt = 0.002306457064668448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 288.43 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1959635416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.778373835748696e-20,-3.774918696257641e-21,7.169158064712991e-17)
    sum a = (-1.3891820537200453e-19,1.8874576540637158e-20,-3.79178328622913e-16)
    sum e = 3.1606103984133444e-09
    sum de = -2.345473198318812e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.64e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002306514226182836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1901e+04 | 9216 |      1 | 2.889e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.741745729393468 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.78s (niter = 6) global walltime = 597.67s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3415082610283706, dt = 0.002306514226182836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 340.52 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1959635416666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.746518010534507e-20,-3.731636494780276e-21,7.082527903775116e-17)
    sum a = (-1.373256590267194e-19,1.865878295814254e-20,-3.7208169106919383e-16)
    sum e = 3.16060506737959e-09
    sum de = -2.27693450405597e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023065718902984356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.552999105903353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3438147752545535, dt = 0.0023065718902984356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 271.26 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1957465277777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.715026522431544e-20,-3.688847594586262e-21,6.997523011600383e-17)
    sum a = (-1.3575133034573667e-19,1.8444141843869345e-20,-3.6507129585462005e-16)
    sum e = 3.1605998945090605e-09
    sum de = -2.208246647045873e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00230662999628303 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.950e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.148558920583046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.346121347144852, dt = 0.00230662999628303 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 357.95 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.683895283721007e-20,-3.64655134318105e-21,6.914123070421824e-17)
    sum a = (-1.341944620678704e-19,1.8232427670496644e-20,-3.581512675251444e-16)
    sum e = 3.160594880117688e-09
    sum de = -2.1394397809235154e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002306688488384331 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1368e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.26342397791528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.348427977141135, dt = 0.002306688488384331 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 19.36 us   (5.5%)
   LB compute        : 310.47 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6531203437849755e-20,-3.604739034768909e-21,6.832306827087529e-17)
    sum a = (-1.3265650638410775e-19,1.8024493456361497e-20,-3.513255982309499e-16)
    sum e = 3.160590024452388e-09
    sum de = -2.0705437707156628e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023067473169187573 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1769e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.625071267906137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3507346656295196, dt = 0.0023067473169187573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 296.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6226972273691014e-20,-3.563400804908644e-21,6.752052123623368e-17)
    sum a = (-1.3113555743489514e-19,1.7817413299273106e-20,-3.4459815021551543e-16)
    sum e = 3.1605853276917192e-09
    sum de = -2.0015881854533903e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.60e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023068064391671616 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.684079512567887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3530414129464385, dt = 0.0023068064391671616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 263.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1953125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5926222111832432e-20,-3.5225383415035234e-21,6.673335926570264e-17)
    sum a = (-1.2963108604385264e-19,1.7613191217952296e-20,-3.3797264468684427e-16)
    sum e = 3.160580789946546e-09
    sum de = -1.9326022883114704e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.59e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023068658200554367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9662e+04 | 9216 |      1 | 3.107e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.72842423491184 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.48s (niter = 5) global walltime = 599.45s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.355348219385606, dt = 0.0023068658200554367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 275.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194986979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5628915954842815e-20,-3.482142628465297e-21,6.596134360291019e-17)
    sum a = (-1.2814499498631426e-19,1.7411126519079438e-20,-3.3145267246758403e-16)
    sum e = 3.1605764112607066e-09
    sum de = -1.8636150276288854e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.58e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002306925432606506 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1061e+04 | 9216 |      1 | 2.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.990048429184956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3576550852056615, dt = 0.002306925432606506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.6%)
   LB compute        : 265.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 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.194986979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5335009058981305e-20,-3.442209486747937e-21,6.520422735363171e-17)
    sum a = (-1.2667477408164123e-19,1.7210465561547918e-20,-3.250416821364826e-16)
    sum e = 3.1605721916117312e-09
    sum de = -1.7946550294184502e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002306985258154114 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1760e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61995716552494 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.359962010638268, dt = 0.002306985258154114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 313.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194986979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5044468055698697e-20,-3.402736646374623e-21,6.446175582307136e-17)
    sum a = (-1.252222189519186e-19,1.701452687981628e-20,-3.1874298833929824e-16)
    sum e = 3.160568130911552e-09
    sum de = -1.7257505875574555e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023070452863200477 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.467543880270895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.362268995896422, dt = 0.0023070452863200477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 273.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194986979166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.475725018404533e-20,-3.3637094850855624e-21,6.373366681106141e-17)
    sum a = (-1.2378531683631899e-19,1.6818767615379935e-20,-3.1255976189602284e-16)
    sum e = 3.1605642290072767e-09
    sum de = -1.6569296553963576e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023071055147594645 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.894e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694175152396795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.364576041182742, dt = 0.0023071055147594645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 267.99 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1947699652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4473321939031308e-20,-3.325132556038332e-21,6.301969095251362e-17)
    sum a = (-1.2236673765891038e-19,1.6625472119744092e-20,-3.0649503493288214e-16)
    sum e = 3.1605604856819327e-09
    sum de = -1.5882198387406453e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023071659486893566 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1969e+04 | 9216 |      1 | 2.883e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81090506895821 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.18s (niter = 4) global walltime = 600.91s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3668831466975018, dt = 0.0023071659486893566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 287.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1947699652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.419263795413009e-20,-3.286997790527155e-21,6.231955202695032e-17)
    sum a = (-1.2096284025363802e-19,1.6434180174089315e-20,-3.0055169956152006e-16)
    sum e = 3.1605569006552837e-09
    sum de = -1.5196483891944692e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023072266002187366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.111e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.701432747741514 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3691903126461913, dt = 0.0023072266002187366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 266.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1945529513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3915168740549266e-20,-3.249301051318469e-21,6.16329672813693e-17)
    sum a = (-1.1957606364072333e-19,1.6245953962517788e-20,-2.947324996334036e-16)
    sum e = 3.160553473584623e-09
    sum de = -1.451242194225714e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307287487513344 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.890e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.741551980055085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.37149753924641, dt = 0.002307287487513344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 271.06 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1945529513888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3640872338378007e-20,-3.2120341739779554e-21,6.095964777935374e-17)
    sum a = (-1.1820371513251104e-19,1.6059961905484677e-20,-2.890400419584867e-16)
    sum e = 3.1605502040656133e-09
    sum de = -1.383027772401166e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023073486337972177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1838e+04 | 9216 |      1 | 2.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694878244014454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3738048267339233, dt = 0.0023073486337972177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 345.49 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1943359374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.336971822451551e-20,-3.1751928364169348e-21,6.029929870150897e-17)
    sum a = (-1.1684780861656453e-19,1.5876023841872913e-20,-2.8347678301687336e-16)
    sum e = 3.1605470916331497e-09
    sum de = -1.3150312671059664e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023074100662617823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1755e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62142909189433 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.89s (niter = 3) global walltime = 602.09s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3761121753677203, dt = 0.0023074100662617823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 265.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1943359374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3101666721131376e-20,-3.1387724381637246e-21,5.965161970788482e-17)
    sum a = (-1.1550741292814648e-19,1.5694522534007403e-20,-2.7804504220293003e-16)
    sum e = 3.1605441357622104e-09
    sum de = -1.2472784349842255e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023074718149187954 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1831e+04 | 9216 |      1 | 2.895e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.690735579803654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3784195854339822, dt = 0.0023074718149187954 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 311.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194118923611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2836683062259748e-20,-3.102767223402163e-21,5.901630523636576e-17)
    sum a = (-1.141828968609169e-19,1.551330128604492e-20,-2.727469882791378e-16)
    sum e = 3.1605413358687677e-09
    sum de = -1.1797946431686504e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023075339113897073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1459e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3558055309354 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.380727057248901, dt = 0.0023075339113897073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.4%)
   LB compute        : 358.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.194118923611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2574730228462854e-20,-3.067178799711568e-21,5.839304486672942e-17)
    sum a = (-1.1287510891856672e-19,1.5336352887080637e-20,-2.675846544774525e-16)
    sum e = 3.160538691310686e-09
    sum de = -1.1126048656815165e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307596387715553 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9316e+04 | 9216 |      1 | 3.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.424506764431 (tsim/hr)                               [sph::Model][rank=0]
Info: next walltime check in 0.59s (niter = 2) global walltime = 602.98s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.383034591160291, dt = 0.002307596387715553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 316.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1939019097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2315769041459253e-20,-3.0319927935062925e-21,5.7781523614821e-17)
    sum a = (-1.115787033684054e-19,1.5159539379535756e-20,-2.6255991937665926e-16)
    sum e = 3.160536201388642e-09
    sum de = -1.0457336729632688e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023076592752051344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.484471984944943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.3853421875480065, dt = 0.0023076592752051344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 272.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2059779136376923e-20,-2.9972138657760637e-21,5.718142231188713e-17)
    sum a = (-1.1029947896799797e-19,1.4985835075635066e-20,-2.576745270885159e-16)
    sum e = 3.1605338653470595e-09
    sum de = -9.79205227336597e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023077226033607935 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1787e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.653322734940215 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 603.57s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3876498468232117, dt = 0.0023077226033607935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 321.20 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.180671457892004e-20,-2.962831148580482e-21,5.659241789183222e-17)
    sum a = (-1.090337810084517e-19,1.4813914042636747e-20,-2.529300661007503e-16)
    sum e = 3.1605316823750664e-09
    sum de = -9.1304327997953e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023077863989126443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1509e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.403682541718478 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 603.86s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3899575694265724, dt = 0.0023077863989126443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.73 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 313.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.193359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1556548252603515e-20,-2.9288420979610378e-21,5.601418377534078e-17)
    sum a = (-1.077827340250595e-19,1.4643986346374294e-20,-2.4832799308731513e-16)
    sum e = 3.1605296516074513e-09
    sum de = -8.472711635595311e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002307850684989117 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1648e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.530091515989543 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 604.15s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.392265355825485, dt = 0.002307850684989117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 298.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193359375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.13092454156687e-20,-2.8952420892388303e-21,5.5446390147076586e-17)
    sum a = (-1.06546117320618e-19,1.4475975287378895e-20,-2.4386960984142676e-16)
    sum e = 3.1605277721256377e-09
    sum de = -7.819117896839816e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023079154804473553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1629e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51371657587337 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 604.44s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3945732065104743, dt = 0.0023079154804473553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 325.09 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1064772983451027e-20,-2.8620265945638306e-21,5.488870434082654e-17)
    sum a = (-1.0532332016903231e-19,1.4310217266752342e-20,-2.39556083410055e-16)
    sum e = 3.160526042958662e-09
    sum de = -7.169876412587008e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023079807993784994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1109e+04 | 9216 |      1 | 2.962e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.04562554433842 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 604.74s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.396881121990922, dt = 0.0023079807993784994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 272.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0823099818866627e-20,-2.8291903015520905e-21,5.4340791127094816e-17)
    sum a = (-1.0411453021805173e-19,1.414636197524597e-20,-2.3538843685916017e-16)
    sum e = 3.16052446308417e-09
    sum de = -6.525207697082166e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023080466508009884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1724e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.601363112218937 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 605.03s (max_walltime = 605.67s)  [SPH][rank=0]
---------------- t = 3.3991891027903005, dt = 0.000810897209701178 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 262.06 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0740068611173982e-20,-2.817908044719751e-21,5.4154724724539604e-17)
    sum a = (-1.0370037783944103e-19,1.4089108155572793e-20,-2.339800081964502e-16)
    sum e = 3.1605240083001972e-09
    sum de = -6.301918500687536e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023080701609761176 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8176e+04 | 9216 |      1 | 3.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.9250575691162 (tsim/hr)                               [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 605.36s (max_walltime = 605.67s)  [SPH][rank=0]
Info: iteration since start : 1495                                                    [SPH][rank=0]
Info: time since start : 605.358703252 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 34):
   -> t = 3.4000000000000017 >= 3.4000000000000017
--------------------------------
tfinal = 8.790406457297188
8.175000000000049
8.200000000000049
8.22500000000005
8.25000000000005
8.27500000000005
8.30000000000005
8.32500000000005
8.350000000000051
8.375000000000052
8.400000000000052
8.425000000000052
8.450000000000053
8.475000000000053
8.500000000000053
8.525000000000054
8.550000000000054
8.575000000000054
8.600000000000055
8.625000000000055
8.650000000000055
8.675000000000056
8.700000000000056
8.725000000000056
8.750000000000057
8.775000000000057
tfinal = 8.790406457297188
8.175000000000049
8.200000000000049
8.22500000000005
8.25000000000005
8.27500000000005
8.30000000000005
8.32500000000005
8.350000000000051
8.375000000000052
8.400000000000052
8.425000000000052
8.450000000000053
8.475000000000053
8.500000000000053
8.525000000000054
8.550000000000054
8.575000000000054
8.600000000000055
8.625000000000055
8.650000000000055
8.675000000000056
8.700000000000056
8.725000000000056
8.750000000000057
8.775000000000057
tfinal = 8.790406457297188
8.175000000000049
8.200000000000049
8.22500000000005
8.25000000000005
8.27500000000005
8.30000000000005
8.32500000000005
8.350000000000051
8.375000000000052
8.400000000000052
8.425000000000052
8.450000000000053
8.475000000000053
8.500000000000053
8.525000000000054
8.550000000000054
8.575000000000054
8.600000000000055
8.625000000000055
8.650000000000055
8.675000000000056
8.700000000000056
8.725000000000056
8.750000000000057
8.775000000000057
tfinal = 8.790406457297188
8.175000000000049
8.200000000000049
8.22500000000005
8.25000000000005
8.27500000000005
8.30000000000005
8.32500000000005
8.350000000000051
8.375000000000052
8.400000000000052
8.425000000000052
8.450000000000053
8.475000000000053
8.500000000000053
8.525000000000054
8.550000000000054
8.575000000000054
8.600000000000055
8.625000000000055
8.650000000000055
8.675000000000056
8.700000000000056
8.725000000000056
8.750000000000057
8.775000000000057
tfinal = 8.790406457297188
8.175000000000049
8.200000000000049
8.22500000000005
8.25000000000005
8.27500000000005
8.30000000000005
8.32500000000005
8.350000000000051
8.375000000000052
8.400000000000052
8.425000000000052
8.450000000000053
8.475000000000053
8.500000000000053
8.525000000000054
8.550000000000054
8.575000000000054
8.600000000000055
8.625000000000055
8.650000000000055
8.675000000000056
8.700000000000056
8.725000000000056
8.750000000000057
8.775000000000057
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[5.72628263e-14 2.00622984e-13 2.57586301e-13 ... 5.72406477e-13
 1.88541921e-13 8.40986971e-16]
(9216, 3)
[[5.72628263e-14 2.00622984e-13 2.57586301e-13 8.37699887e-14
  0.00000000e+00]
 [7.15158102e-06 2.54759099e-06 3.14416938e-12 3.51641222e-12
  6.65591838e-16]
 [9.13060312e-14 5.58532091e-13 6.60907155e-13 1.49994713e-13
  3.89040856e-15]
 ...
 [4.23639660e-05 5.34413504e-05 6.44053656e-05 4.74348695e-05
  4.13091146e-11]
 [3.24352768e-05 3.66413922e-05 2.93789720e-05 1.43965404e-11
  1.40154668e-12]
 [7.79194107e-14 4.55904745e-13 5.72406477e-13 1.88541921e-13
  8.40986971e-16]]
compute original rho
0.0006687492621073604 0.0
0.0010925660039632751 0.0
0.001864239082689583 0.0
0.0034705945339397392 0.0
0.007597286291114363 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.4000000000000017 -> 3.5000000000000018

[Simulation] Evolve until next trigger(s) :
   -> t = 3.5000000000000018 (current = 3.4000000000000017)
   -> iter = None (current = 1494)
   -> walltime = 605.667307107 (current = 611.2734222390001)

Info: evolve_until (target_time = 3.50s, niter_max = -1, max_walltime = 605.67s)      [SPH][rank=0]
---------------- t = 3.4000000000000017, dt = 0.0023080701609761176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.1%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 338.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0500888690978564e-20,-2.7854126630545807e-21,5.361525349489013e-17)
    sum a = (-1.025041456488986e-19,1.3926261864911423e-20,-2.2998972362606563e-16)
    sum e = 3.1605225628767485e-09
    sum de = -5.661663208957118e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023081364868155073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4315e+04 | 9216 |      1 | 3.790e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.921965634722604 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 611.65s > 605.67s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 19):
   -> walltime = 611.653085827 >= 605.667307107
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000019.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (56.0%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000019.sham              [Shamrock Dump][rank=0]
              - took 1.48 ms, bandwidth = 2.36 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 611.653085827 -> 641.653085827

[Simulation] Evolve until next trigger(s) :
   -> t = 3.5000000000000018 (current = 3.402308070160978)
   -> iter = None (current = 1495)
   -> walltime = 641.653085827 (current = 611.6571574960001)

Info: evolve_until (target_time = 3.50s, niter_max = -1, max_walltime = 641.65s)      [SPH][rank=0]
---------------- t = 3.402308070160978, dt = 0.0023081364868155073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.29 us    (1.1%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 365.50 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (69.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0265675671359372e-20,-2.7534568118565145e-21,5.3089010750484446e-17)
    sum a = (-1.0132836643144117e-19,1.376710783734001e-20,-2.261684247498109e-16)
    sum e = 3.160521329974684e-09
    sum de = -5.028599959210064e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002308203597750015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5237e+04 | 9216 |      1 | 3.652e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.754216748909208 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.31s (niter = 20) global walltime = 612.02s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.4046162066477934, dt = 0.002308203597750015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 342.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0033146072432374e-20,-2.7218632579814882e-21,5.257137801849488e-17)
    sum a = (-1.001658159588835e-19,1.360899295300089e-20,-2.224952747044663e-16)
    sum e = 3.1605202423307013e-09
    sum de = -4.4008072059221835e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.52e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023082712327899516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1745e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62294512310317 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4069244102455434, dt = 0.0023082712327899516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 288.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9803277848024256e-20,-2.69063243715942e-21,5.2062037765411985e-17)
    sum a = (-9.901621411410548e-20,1.3453063841774719e-20,-2.1897081239449144e-16)
    sum e = 3.160519298958147e-09
    sum de = -3.778495674384035e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002308339381523982 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1768e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.644328682927824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.409232681478333, dt = 0.002308339381523982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 294.86 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9576041703000345e-20,-2.659758173248823e-21,5.156064652345627e-17)
    sum a = (-9.788054683507568e-20,1.3298502808056312e-20,-2.155953100577067e-16)
    sum e = 3.160518498575723e-09
    sum de = -3.16186212252004e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002308408028311075 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.594366046815043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.411541020859857, dt = 0.002308408028311075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 300.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (55.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1924913194444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9351404207193057e-20,-2.6292382039751752e-21,5.10668604813148e-17)
    sum a = (-9.675741128712307e-20,1.3146648647422698e-20,-2.1236889889381638e-16)
    sum e = 3.1605178398583243e-09
    sum de = -2.551098821780285e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023084771546193514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7532e+04 | 9216 |      1 | 3.347e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.825807862990292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.413849428888168, dt = 0.0023084771546193514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9129338277127146e-20,-2.5990646895009395e-21,5.0580335666564614e-17)
    sum a = (-9.564708974621144e-20,1.2996515058797067e-20,-2.0929158421126083e-16)
    sum e = 3.160517321436939e-09
    sum de = -1.9463934790559615e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.53e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023085467398327496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1673e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.56077778651845 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4161579060427876, dt = 0.0023085467398327496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 285.27 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.890981402349078e-20,-2.569234853698383e-21,5.0100728217474646e-17)
    sum a = (-9.454770859350014e-20,1.284671633081392e-20,-2.063632308665839e-16)
    sum e = 3.1605169418997226e-09
    sum de = -1.3479292117271691e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023086167621217666 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9389e+04 | 9216 |      1 | 3.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.501960917251644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4184664527826203, dt = 0.0023086167621217666 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 305.40 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8692808634282297e-20,-2.5397497253742554e-21,4.962769472375755e-17)
    sum a = (-9.346396051036517e-20,1.2698128639314983e-20,-2.035835713428128e-16)
    sum e = 3.1605166997930472e-09
    sum de = -7.55884524264798e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023086871993364282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1671e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.561445323533416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.420775069544742, dt = 0.0023086871993364282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.0%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 273.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8478280415870278e-20,-2.510605238816319e-21,4.9160892523034356e-17)
    sum a = (-9.239159516492203e-20,1.2553375351286761e-20,-2.0095220439226939e-16)
    sum e = 3.1605165936225445e-09
    sum de = -1.704332976683663e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023087580298830003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.697398993365784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.423083756744078, dt = 0.0023087580298830003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 264.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8266208600662624e-20,-2.481789464267582e-21,4.869998000917394e-17)
    sum a = (-9.133106704988288e-20,1.2408914160750706e-20,-1.9846860450027193e-16)
    sum e = 3.160516621854177e-09
    sum de = 4.082552475421094e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002308829233560019 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.010e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.61045223803123 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4253925147739612, dt = 0.002308829233560019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 293.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8056565013658644e-20,-2.4533062979897587e-21,4.8244616908650313e-17)
    sum a = (-9.028189278892359e-20,1.2266446949542116e-20,-1.9613211324081687e-16)
    sum e = 3.160516782915294e-09
    sum de = 9.800165549695717e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023089007923171876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1776e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.657898461442656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4277013440075215, dt = 0.0023089007923171876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 263.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7849324261487013e-20,-2.425148625261514e-21,4.7794464596665754e-17)
    sum a = (-8.924657736913437e-20,1.212636633012283e-20,-1.9394194356824563e-16)
    sum e = 3.1605170751957143e-09
    sum de = 1.5446907576695154e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023089726909870925 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9862e+04 | 9216 |      1 | 3.086e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.932625007462974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.430010244799839, dt = 0.0023089726909870925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 268.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7644451549573343e-20,-2.3973109928569083e-21,4.734918638765066e-17)
    sum a = (-8.822208308839001e-20,1.1986627846715262e-20,-1.918971859702441e-16)
    sum e = 3.1605174970487802e-09
    sum de = 2.1021226939100173e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309044917646095 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.996e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.746283742838802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.432319217490826, dt = 0.002309044917646095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 298.99 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7441925544756905e-20,-2.369794548418123e-21,4.690844781034005e-17)
    sum a = (-8.720894119828918e-20,1.184885680932395e-20,-1.8999680711716771e-16)
    sum e = 3.160518046792458e-09
    sum de = 2.652161929467791e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023091174641051144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1740e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.628752428486944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.434628262408472, dt = 0.0023091174641051144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 283.32 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7241719599292373e-20,-2.3425933105617414e-21,4.647191689504721e-17)
    sum a = (-8.62079389043461e-20,1.171269728822443e-20,-1.8823964917064829e-16)
    sum e = 3.1605187227104126e-09
    sum de = 3.1946627420701735e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023091903261228774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1719e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.610935768310686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.436937379872577, dt = 0.0023091903261228774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 315.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7043804748143496e-20,-2.3157036482051154e-21,4.60392644601099e-17)
    sum a = (-8.521882042209574e-20,1.1578583765562458e-20,-1.8662444186688637e-16)
    sum e = 3.160519523053091e-09
    sum de = 3.729484137271359e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00230926350346189 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1499e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41305604056906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4392465701986996, dt = 0.00230926350346189 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 297.33 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.192491319444444
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6848154090489492e-20,-2.289120451424663e-21,4.561016435816141e-17)
    sum a = (-8.424042515629351e-20,1.1445594379874624e-20,-1.85149785413574e-16)
    sum e = 3.1605204460388156e-09
    sum de = 4.256489856119263e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309336999776899 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1775e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.663264046258657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4415558337021617, dt = 0.002309336999776899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 290.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.665474425976335e-20,-2.2628422809912623e-21,4.518429379342553e-17)
    sum a = (-8.327387289981831e-20,1.1314317967329087e-20,-1.8381417509002654e-16)
    sum e = 3.160521489854865e-09
    sum de = 4.775548381218907e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023094108223394453 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9982e+04 | 9216 |      1 | 3.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.046225516945796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4438651707019385, dt = 0.0023094108223394453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 289.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192274305555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.646354668264562e-20,-2.236864501222732e-21,4.476133353540907e-17)
    sum a = (-8.231704307839696e-20,1.1184473618569547e-20,-1.8261599223297806e-16)
    sum e = 3.160522652658572e-09
    sum de = 5.286532954157732e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309484981605865 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9792e+04 | 9216 |      1 | 3.093e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.875580138796785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.446174581524278, dt = 0.002309484981605865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 290.48 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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.192057291666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6274541526823062e-20,-2.211184069711944e-21,4.4340968191906493e-17)
    sum a = (-8.13727041570786e-20,1.1055640011374022e-20,-1.815535028580199e-16)
    sum e = 3.1605239325784288e-09
    sum de = 5.789321563400699e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023095594906383664 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9500e+04 | 9216 |      1 | 3.124e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.613545205853768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.448484066505884, dt = 0.0023095594906383664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 264.48 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1918402777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6087696924593972e-20,-2.1857991687169183e-21,4.39228864780807e-17)
    sum a = (-8.0438119428483e-20,1.0928449042149567e-20,-1.8062486693848255e-16)
    sum e = 3.160525327715169e-09
    sum de = 6.283796929756654e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023096343644310466 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9091e+04 | 9216 |      1 | 3.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.245297341670113 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.77s (niter = 19) global walltime = 618.03s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.450793625996522, dt = 0.0023096343644310466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.03 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.1918402777777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5902993525588814e-20,-2.1607052626853286e-21,4.350678144836602e-17)
    sum a = (-7.951471441824673e-20,1.0803725453002358e-20,-1.7982814092950008e-16)
    sum e = 3.160526836142867e-09
    sum de = 6.76984651631363e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309709619116671 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0176e+04 | 9216 |      1 | 3.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.224761092821044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4531032603609533, dt = 0.002309709619116671 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.4%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 270.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5720403903029982e-20,-2.1358959235005594e-21,4.309235073429745e-17)
    sum a = (-7.860131716693685e-20,1.0678683886646651e-20,-1.7916127287079342e-16)
    sum e = 3.1605284559100226e-09
    sum de = 7.247362506732442e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002309785271100265 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1717e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.615718995217282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.45541296998007, dt = 0.002309785271100265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 266.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
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.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.553990658951673e-20,-2.1113747965495238e-21,4.267929680086519e-17)
    sum a = (-7.769924139585421e-20,1.0556816335459428e-20,-1.7862211397536064e-16)
    sum e = 3.160530185040662e-09
    sum de = 7.716241818320697e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023098613361673555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1811e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.701966825515274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4577227552511705, dt = 0.0023098613361673555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.536147391619928e-20,-2.0871307564150527e-21,4.226732715679605e-17)
    sum a = (-7.680730460442291e-20,1.0434939578927526e-20,-1.782084169438096e-16)
    sum e = 3.160532021535414e-09
    sum de = 8.176386080518575e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023099378285842517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1639e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.547274373426458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4600326165873376, dt = 0.0023099378285842517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 335.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5185083975545654e-20,-2.0631674737916057e-21,4.1856154584440653e-17)
    sum a = (-7.592528944263757e-20,1.0315555492413351e-20,-1.7791783958846902e-16)
    sum e = 3.1605339633726026e-09
    sum de = 8.627701623768101e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310014760225212 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1554e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.472032073023186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.462342554415922, dt = 0.002310014760225212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.2%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1.71 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 323.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5010714138208653e-20,-2.0394762582880443e-21,4.144549735654462e-17)
    sum a = (-7.505296515409558e-20,1.0197959674491663e-20,-1.7774794761040516e-16)
    sum e = 3.1605360085093284e-09
    sum de = 9.07009946194355e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231009213975777 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.402551644927787 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.464652569176147, dt = 0.00231009213975777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.65 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 319.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 5.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.483834238222218e-20,-2.016053903548357e-21,4.103507944660935e-17)
    sum a = (-7.419094699384217e-20,1.0080414790756576e-20,-1.7769621265854877e-16)
    sum e = 3.1605381548825317e-09
    sum de = 9.50349528555836e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023101699719178565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1513e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.436566563816545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.466962661315905, dt = 0.0023101699719178565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.3%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 274.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.466794435292462e-20,-1.992902085372203e-21,4.062463074803549e-17)
    sum a = (-7.33396158558452e-20,9.964459449761616e-21,-1.7776002506728658e-16)
    sum e = 3.1605404004100765e-09
    sum de = 9.927809448184618e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023102482569018557 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7894e+04 | 9216 |      1 | 3.304e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.171779073744695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4692728312878227, dt = 0.0023102482569018557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 314.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4499495057464067e-20,-1.970015683933047e-21,4.021388725132864e-17)
    sum a = (-7.249733105191492e-20,9.849180852345399e-21,-1.77936689397034e-16)
    sum e = 3.160542742991807e-09
    sum de = 1.0342966917462518e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023103269898958685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1603e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.519793498305443 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4715830795447244, dt = 0.0023103269898958685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 318.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191623263888889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.433297538754317e-20,-1.947394080846512e-21,3.980259124609753e-17)
    sum a = (-7.166512491865417e-20,9.737548018154678e-21,-1.782234322104562e-16)
    sum e = 3.1605451805106093e-09
    sum de = 1.0748897292624614e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023104061607648802 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1648e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.561323019200177 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4738934065346205, dt = 0.0023104061607648802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 291.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.1911892361111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4168361166753462e-20,-1.9250251967109876e-21,3.9390491495359224e-17)
    sum a = (-7.084171413462617e-20,9.624976610717739e-21,-1.7861740026266594e-16)
    sum e = 3.1605477108334657e-09
    sum de = 1.114553474791215e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023104857539152424 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1680e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59093853580794 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4762038126953856, dt = 0.0023104857539152424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 268.74 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1911892361111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4005633678514377e-20,-1.9029169615909115e-21,3.897734342363357e-17)
    sum a = (-7.002761191045045e-20,9.514314193267732e-21,-1.791156673708272e-16)
    sum e = 3.1605503318124878e-09
    sum de = 1.1532818028278096e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023105657483389296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1763e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.66733543775052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.478514298449301, dt = 0.0023105657483389296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 267.11 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
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.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3844770702800766e-20,-1.881061341991007e-21,3.8562909278106074e-17)
    sum a = (-6.922368385661857e-20,9.405084284136264e-21,-1.7971523333831576e-16)
    sum e = 3.1605530412859665e-09
    sum de = 1.1910690427832587e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310646117840214 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.513535008286496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.48082486419764, dt = 0.002310646117840214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 289.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3685748074207443e-20,-1.859455678418316e-21,3.814695830358448e-17)
    sum a = (-6.842859380953825e-20,9.297254359826088e-21,-1.804130378758239e-16)
    sum e = 3.16055583707941e-09
    sum de = 1.2279099738453855e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023107268314442983 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1687e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.600638612392284 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.48313551031548, dt = 0.0023107268314442983 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3528546873693479e-20,-1.8380968008276535e-21,3.772926686662235e-17)
    sum a = (-6.764241383629711e-20,9.190160777264524e-21,-1.8120595025338186e-16)
    sum e = 3.1605587170065494e-09
    sum de = 1.26379982731913e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002310807853975411 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1452e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.389762939329685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4854462371469244, dt = 0.002310807853975411 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 286.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3373146606548145e-20,-1.8169838982772282e-21,3.730961863167279e-17)
    sum a = (-6.686705403161147e-20,9.084960771294213e-21,-1.82090780902675e-16)
    sum e = 3.1605616788703903e-09
    sum de = 1.2987342777636222e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231088914679032 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59671362321785 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.4877570450008997, dt = 0.00231088914679032 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 311.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3219520096868639e-20,-1.796111043299699e-21,3.6887804685522364e-17)
    sum a = (-6.609804087965203e-20,8.98078965129788e-21,-1.830642807339425e-16)
    sum e = 3.160564720464196e-09
    sum de = 1.332709442026719e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023109706686464575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9126e+04 | 9216 |      1 | 3.164e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.291604486433222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.49006793414769, dt = 0.0023109706686464575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 331.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3067657950053855e-20,-1.775477176279129e-21,3.646362367712519e-17)
    sum a = (-6.53382943562426e-20,8.877965933644777e-21,-1.8412315418555148e-16)
    sum e = 3.160567839572513e-09
    sum de = 1.3657218784852242e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002311052376678403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8575e+04 | 9216 |      1 | 3.225e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.795102540391113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4923789048163365, dt = 0.002311052376678403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 311.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1909722222222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2917535730017897e-20,-1.7550785131872678e-21,3.603688191130246e-17)
    sum a = (-6.458834843739414e-20,8.77584529042126e-21,-1.8526404674507928e-16)
    sum e = 3.1605710339721707e-09
    sum de = 1.3977685809890952e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023111342274553938 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1578e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.507070702584617 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.21s (niter = 14) global walltime = 623.68s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.494689957193015, dt = 0.0023111342274553938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 270.10 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 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.190755208333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2769129889739956e-20,-1.734914333309226e-21,3.56073935005129e-17)
    sum a = (-6.384628393087781e-20,8.674871092223278e-21,-1.8648356398338738e-16)
    sum e = 3.160574301433271e-09
    sum de = 1.4288469772531033e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023112161780855763 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1445e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.388362573439025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4970010914204703, dt = 0.0023112161780855763 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 273.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2622424841972518e-20,-1.7149815238168786e-21,3.5174980436360897e-17)
    sum a = (-6.311223075903143e-20,8.575398012200641e-21,-1.877782655839593e-16)
    sum e = 3.1605776397201914e-09
    sum de = 1.4589549244970005e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023112981873339026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9232e+04 | 9216 |      1 | 3.153e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.391111668024482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.4993123075985557, dt = 0.0006876924014460606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 270.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 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.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2579871359170859e-20,-1.709199219457506e-21,3.5044350582424115e-17)
    sum a = (-6.289978683047397e-20,8.546775763353777e-21,-1.8817046911635354e-16)
    sum e = 3.160578677791799e-09
    sum de = 1.4672824001147246e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023113225985378323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2298e+04 | 9216 |      1 | 2.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.67633954897633 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 1539                                                    [SPH][rank=0]
Info: time since start : 624.5780650930001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 35):
   -> t = 3.5000000000000018 >= 3.5000000000000018
--------------------------------
tfinal = 9.418292632818416
8.800000000000058
8.825000000000058
8.850000000000058
8.875000000000059
8.900000000000059
8.92500000000006
8.95000000000006
8.97500000000006
9.00000000000006
9.02500000000006
9.050000000000061
9.075000000000061
9.100000000000062
9.125000000000062
9.150000000000063
9.175000000000063
9.200000000000063
9.225000000000064
9.250000000000064
9.275000000000064
9.300000000000065
9.325000000000065
9.350000000000065
9.375000000000066
9.400000000000066
tfinal = 9.418292632818416
8.800000000000058
8.825000000000058
8.850000000000058
8.875000000000059
8.900000000000059
8.92500000000006
8.95000000000006
8.97500000000006
9.00000000000006
9.02500000000006
9.050000000000061
9.075000000000061
9.100000000000062
9.125000000000062
9.150000000000063
9.175000000000063
9.200000000000063
9.225000000000064
9.250000000000064
9.275000000000064
9.300000000000065
9.325000000000065
9.350000000000065
9.375000000000066
9.400000000000066
tfinal = 9.418292632818416
8.800000000000058
8.825000000000058
8.850000000000058
8.875000000000059
8.900000000000059
8.92500000000006
8.95000000000006
8.97500000000006
9.00000000000006
9.02500000000006
9.050000000000061
9.075000000000061
9.100000000000062
9.125000000000062
9.150000000000063
9.175000000000063
9.200000000000063
9.225000000000064
9.250000000000064
9.275000000000064
9.300000000000065
9.325000000000065
9.350000000000065
9.375000000000066
9.400000000000066
tfinal = 9.418292632818416
8.800000000000058
8.825000000000058
8.850000000000058
8.875000000000059
8.900000000000059
8.92500000000006
8.95000000000006
8.97500000000006
9.00000000000006
9.02500000000006
9.050000000000061
9.075000000000061
9.100000000000062
9.125000000000062
9.150000000000063
9.175000000000063
9.200000000000063
9.225000000000064
9.250000000000064
9.275000000000064
9.300000000000065
9.325000000000065
9.350000000000065
9.375000000000066
9.400000000000066
tfinal = 9.418292632818416
8.800000000000058
8.825000000000058
8.850000000000058
8.875000000000059
8.900000000000059
8.92500000000006
8.95000000000006
8.97500000000006
9.00000000000006
9.02500000000006
9.050000000000061
9.075000000000061
9.100000000000062
9.125000000000062
9.150000000000063
9.175000000000063
9.200000000000063
9.225000000000064
9.250000000000064
9.275000000000064
9.300000000000065
9.325000000000065
9.350000000000065
9.375000000000066
9.400000000000066
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.72280013e-14 1.51956634e-13 1.42733062e-13 ... 2.44203038e-13
 4.27164952e-14 0.00000000e+00]
(9216, 3)
[[3.72280013e-14 1.51956634e-13 1.42733062e-13 5.93878168e-14
  0.00000000e+00]
 [6.89889564e-06 1.84543889e-06 2.00267975e-12 2.34123945e-12
  1.47074670e-16]
 [6.81798018e-14 4.03631243e-13 4.48569856e-13 9.86266474e-14
  2.81118444e-15]
 ...
 [4.24042889e-05 5.34591506e-05 6.38184981e-05 4.23932724e-05
  2.55943894e-11]
 [3.23118582e-05 3.60957973e-05 2.73808864e-05 9.63347406e-12
  5.96035431e-13]
 [5.67492321e-14 2.24669569e-13 2.44203038e-13 4.27164952e-14
  0.00000000e+00]]
compute original rho
0.0006696932354174104 0.0
0.001096500419798161 0.0
0.0018798868639431018 0.0
0.003530817272935837 0.0
0.007851238706777643 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.5000000000000018 -> 3.600000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 3.600000000000002 (current = 3.5000000000000018)
   -> iter = None (current = 1538)
   -> walltime = 641.653085827 (current = 630.917915129)

Info: evolve_until (target_time = 3.60s, niter_max = -1, max_walltime = 641.65s)      [SPH][rank=0]
---------------- t = 3.5000000000000018, dt = 0.0023113225985378323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.2%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 313.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.4%)
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.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.243456272896109e-20,-1.6894547443191743e-21,3.460929306713353e-17)
    sum a = (-6.217164132886621e-20,8.447050499139575e-21,-1.895645590161241e-16)
    sum e = 3.1605820720512758e-09
    sum de = 1.4965770991820719e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023114046232603504 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.877e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.46033495175498 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.33s (niter = 6) global walltime = 631.31s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5023113225985396, dt = 0.0023114046232603504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.7%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 343.33 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (57.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2291700328322307e-20,-1.6700454192096098e-21,3.4169521573308987e-17)
    sum a = (-6.145882022400047e-20,8.34991859816592e-21,-1.9101873464162547e-16)
    sum e = 3.1605855651006846e-09
    sum de = 1.5244472578020855e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002311486627930557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9142e+04 | 9216 |      1 | 3.162e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.312351682715807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5046227272218, dt = 0.002311486627930557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.7%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.69 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 324.01 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.215046289658636e-20,-1.650856967355902e-21,3.3726303728258286e-17)
    sum a = (-6.075228296073309e-20,8.254197253965705e-21,-1.9253653416350395e-16)
    sum e = 3.160589121049275e-09
    sum de = 1.5513452223890285e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023115685801678135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0537e+04 | 9216 |      1 | 3.018e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.57246174776769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5069342138497306, dt = 0.0023115685801678135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.4%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 274.15 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2010846485776115e-20,-1.6318873344455343e-21,3.327948813877024e-17)
    sum a = (-6.005349196750365e-20,8.159540609217659e-21,-1.9411433351019045e-16)
    sum e = 3.160592738176835e-09
    sum de = 1.5772683137874093e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023116504574046096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1478e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.422963795310086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5092457824298986, dt = 0.0023116504574046096 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 307.71 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.1903211805555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1872831457236087e-20,-1.6131347907627723e-21,3.282894005522692e-17)
    sum a = (-5.93634486132816e-20,8.06511770056067e-21,-1.957485294071968e-16)
    sum e = 3.160596414230911e-09
    sum de = 1.6022166140746383e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023117322434817963 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1435e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3853364848279 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.511557432887303, dt = 0.0023117322434817963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 308.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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.1896701388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1736396550427205e-20,-1.594599476049282e-21,3.237453302345859e-17)
    sum a = (-5.868138851335702e-20,7.972507985127725e-21,-1.974354938954332e-16)
    sum e = 3.1606001469621623e-09
    sum de = 1.6261905978257e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023118139291128403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.061e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.191622911410363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5138691651307847, dt = 0.0023118139291128403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 258.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
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.1896701388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1601524516606561e-20,-1.5762756707997278e-21,3.191614899342089e-17)
    sum a = (-5.800801559601407e-20,7.881542133431326e-21,-1.9917158481955305e-16)
    sum e = 3.1606039341225354e-09
    sum de = 1.6491911398554002e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.54e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002311895512141292 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1664e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.594045560435248 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.88s (niter = 6) global walltime = 633.11s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5161809790598975, dt = 0.002311895512141292 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 270.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1896701388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1468194341708575e-20,-1.5581594699497707e-21,3.1453678340664466e-17)
    sum a = (-5.734043587957942e-20,7.790816793646272e-21,-2.0095315034066257e-16)
    sum e = 3.1606077734662086e-09
    sum de = 1.671219510573153e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023119769975935367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8128e+04 | 9216 |      1 | 3.276e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.402350847056617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.518492874572039, dt = 0.0023119769975935367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 266.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.1896701388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1336396230612721e-20,-1.5402521366760413e-21,3.0987019882861847e-17)
    sum a = (-5.668180789320422e-20,7.700287349669764e-21,-2.0277652718010024e-16)
    sum e = 3.1606116627505247e-09
    sum de = 1.6922773714789507e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023120583975169973 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1660e+04 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.592927041966348 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5208048515696326, dt = 0.0023120583975169973 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 273.26 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
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.1896701388888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1206106024515777e-20,-1.5225531901351706e-21,3.05160809076414e-17)
    sum a = (-5.602928952247995e-20,7.612648625994174e-21,-2.0463804608401816e-16)
    sum e = 3.1606155997368933e-09
    sum de = 1.7123667708431394e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.55e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002312139730761373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.056e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.237924387698584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5231169099671495, dt = 0.002312139730761373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 268.51 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.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.189453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1077312777354053e-20,-1.5050531432984938e-21,3.0040777180698915e-17)
    sum a = (-5.53866632243889e-20,7.525545348367873e-21,-2.065340301412797e-16)
    sum e = 3.1606195821917002e-09
    sum de = 1.731490139322841e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002312221022181649 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.601941186314505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.525429049697911, dt = 0.002312221022181649 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.7%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 19.41 us   (4.9%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 353.47 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.189453125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0949989515685111e-20,-1.4877529765583261e-21,2.956103296444158e-17)
    sum a = (-5.474960292046189e-20,7.438331199484052e-21,-2.0846081450444605e-16)
    sum e = 3.160623607887192e-09
    sum de = 1.7496502842521938e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002312302301841808 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1019e+04 | 9216 |      1 | 2.971e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.016760264271213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.527741270720093, dt = 0.002312302301841808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 320.23 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
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.1892361111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0824128446985524e-20,-1.4706542006651148e-21,2.90767809675005e-17)
    sum a = (-5.4120288954793154e-20,7.353082073694069e-21,-2.1041473446857519e-16)
    sum e = 3.1606276746023596e-09
    sum de = 1.7668503821614094e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.56e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023123836042619446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1524e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.474164241092158 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.54s (niter = 5) global walltime = 634.92s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5300535730219345, dt = 0.0023123836042619446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.5%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 353.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1892361111111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0699709149166211e-20,-1.453749627175544e-21,2.8587962358691694e-17)
    sum a = (-5.3498817966996875e-20,7.268630595531738e-21,-2.1239213209385905e-16)
    sum e = 3.160631780123795e-09
    sum de = 1.783093977951591e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023124649673195168 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1456e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.413730707314862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5323659566261965, dt = 0.0023124649673195168 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.0%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 350.48 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0576713460211967e-20,-1.437038848968226e-21,2.809452674292771e-17)
    sum a = (-5.288366722625366e-20,7.185220294007984e-21,-2.1438936354653703e-16)
    sum e = 3.1606359222465444e-09
    sum de = 1.798384979530859e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.57e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023125464310853874 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.337512044519492 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.534678421593516, dt = 0.0023125464310853874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 283.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0455128798971577e-20,-1.420519073410506e-21,2.7596432121495746e-17)
    sum a = (-5.2275501225089465e-20,7.102278551790481e-21,-2.1640279585665168e-16)
    sum e = 3.160640098774957e-09
    sum de = 1.8127276475708308e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.58e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023126280365864146 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.857687904797814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5369909680246017, dt = 0.0023126280365864146 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 20.03 us   (6.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 268.73 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0334938220392682e-20,-1.4041901860682643e-21,2.7093644870808154e-17)
    sum a = (-5.167489907937422e-20,7.020968675332191e-21,-2.1842882060090126e-16)
    sum e = 3.1606443075234857e-09
    sum de = 1.8261265927602197e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.58e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023127098245299413 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55813164279981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5393035960611883, dt = 0.0023127098245299413 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.65 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 343.47 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0216123683496161e-20,-1.3880466698965311e-21,2.6586139670476172e-17)
    sum a = (-5.1081530521234843e-20,6.939964795710314e-21,-2.2046384395323548e-16)
    sum e = 3.160648546317504e-09
    sum de = 1.8385867703638775e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.59e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023127918340284993 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1570e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52085880243139 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.22s (niter = 4) global walltime = 636.39s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5416163058857184, dt = 0.0023127918340284993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.188802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0098668881419938e-20,-1.3720896450292873e-21,2.6073899483314773e-17)
    sum a = (-5.04936392025963e-20,6.860343318767414e-21,-2.2250430302692825e-16)
    sum e = 3.1606528129940883e-09
    sum de = 1.8501134749494063e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.60e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002312874101363219 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.468705058361316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.543929097719747, dt = 0.002312874101363219 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 274.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.188802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.982563257616462e-21,-1.356314611124705e-21,2.555691546470203e-17)
    sum a = (-4.991360992391379e-20,6.781516064130869e-21,-2.245466539376992e-16)
    sum e = 3.160657105402807e-09
    sum de = 1.860712332079362e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.60e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002312956658823403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1647e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.591985350949027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.54624197182111, dt = 0.002312956658823403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 267.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.188802083333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.867786112713977e-21,-1.3407204139386336e-21,2.5035186935999603e-17)
    sum a = (-4.933879633014667e-20,6.7037386897279756e-21,-2.2658739274785135e-16)
    sum e = 3.1606614214064492e-09
    sum de = 1.870389295406984e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.61e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313039533698818 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1515e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.473943756226227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5485549284799336, dt = 0.002313039533698818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 308.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.54 us   (93.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.754328146739595e-21,-1.3253043664699131e-21,2.450872126864857e-17)
    sum a = (-4.87725995265729e-20,6.6269417450512816e-21,-2.2862304680225253e-16)
    sum e = 3.1606657588817975e-09
    sum de = 1.8791506399100243e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.62e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313122747320148 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52519796765222 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 637.56s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5508679680136326, dt = 0.002313122747320148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 278.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.64216607675124e-21,-1.3100642856676422e-21,2.3977533824329184e-17)
    sum a = (-4.8210447520201106e-20,6.550074800803425e-21,-2.306501731342483e-16)
    sum e = 3.160670115720335e-09
    sum de = 1.887002954409599e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023132063143343103 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.036576337640952 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.553181090760953, dt = 0.0023132063143343103 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 262.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.531295508038582e-21,-1.2950014358087794e-21,2.3441647891480764e-17)
    sum a = (-4.7655939418145746e-20,6.47480609188749e-21,-2.3266537726286367e-16)
    sum e = 3.1606744898289547e-09
    sum de = 1.893953136004469e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.63e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313290242167941 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48197421647933 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5554942970752874, dt = 0.002313290242167941 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 272.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.421694847763474e-21,-1.280110322955245e-21,2.290109455303343e-17)
    sum a = (-4.710902915847293e-20,6.399892029713487e-21,-2.346653004419107e-16)
    sum e = 3.1606788791306624e-09
    sum de = 1.9000083835107236e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.64e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023133745307028835 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1038e+04 | 9216 |      1 | 2.969e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.04702804933407 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 638.44s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5578075873174555, dt = 0.0023133745307028835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 266.04 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (11.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.3133466315187e-21,-1.2653915940999473e-21,2.235591262228101e-17)
    sum a = (-4.6566859325611923e-20,6.327323049452151e-21,-2.3664663389610357e-16)
    sum e = 3.1606832815652495e-09
    sum de = 1.90517619621407e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.65e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313459172176663 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.98059119104153 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5601209618481584, dt = 0.002313459172176663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 283.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.206243135001178e-21,-1.250837568952921e-21,2.1806148513372402e-17)
    sum a = (-4.603129514290014e-20,6.253299533404537e-21,-2.386061056343091e-16)
    sum e = 3.1606876950899567e-09
    sum de = 1.9094643607595275e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.66e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023135441513128024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1535e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49796082941139 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 639.04s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.562434421020335, dt = 0.0023135441513128024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 269.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1883680555555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.100367173287026e-21,-1.236455952011349e-21,2.1251856174402842e-17)
    sum a = (-4.5501925890876934e-20,6.1824990114290185e-21,-2.4054050670139633e-16)
    sum e = 3.1606921176801365e-09
    sum de = 1.9128809487683636e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.67e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313629445678853 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1485e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.454079276029137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.564747965171648, dt = 0.002313629445678853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 327.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1877170138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.995705031887113e-21,-1.2222338452295332e-21,2.0693096913980188e-17)
    sum a = (-4.4979016959871423e-20,6.110310755684998e-21,-2.424466711501224e-16)
    sum e = 3.1606965473298798e-09
    sum de = 1.9154343079870235e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.67e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313715026263449 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1435e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.4098050087862 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 639.62s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5670615946173267, dt = 0.002313715026263449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.6%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 342.21 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.892241275399201e-21,-1.2081797695480883e-21,2.0129939328708886e-17)
    sum a = (-4.4461083399929005e-20,6.040824994820359e-21,-2.4432149211920286e-16)
    sum e = 3.1607009820526304e-09
    sum de = 1.9171330591942115e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.68e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313800858255978 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.7065257235518 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 639.92s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5693753096435903, dt = 0.002313800858255978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 321.35 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.789966359577565e-21,-1.1942829010397382e-21,1.95624591499539e-17)
    sum a = (-4.3949460914704814e-20,5.971729866927353e-21,-2.461619135240334e-16)
    sum e = 3.160705419881818e-09
    sum de = 1.9179860870077934e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.69e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023138869020088923 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1444e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.419669477250956 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 640.22s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5716891105018465, dt = 0.0023138869020088923 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.50 us    (0.5%)
   LB compute        : 280.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.688864237237556e-21,-1.1805449507146398e-21,1.89907391381784e-17)
    sum a = (-4.3445106010592043e-20,5.902318936074127e-21,-2.4796494879315043e-16)
    sum e = 3.1607098588714383e-09
    sum de = 1.918002533991487e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.70e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002313973114154284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1196e+04 | 9216 |      1 | 2.954e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.19676406424746 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 640.51s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.574002997403855, dt = 0.002313973114154284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 264.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.588916904811206e-21,-1.1669674722360356e-21,1.8414868903603484e-17)
    sum a = (-4.294485676722841e-20,5.8349416139643235e-21,-2.4972766103839836e-16)
    sum e = 3.1607142970966375e-09
    sum de = 1.9171917952595253e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.70e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023140594488423867 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1588e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.552304696209898 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 640.80s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.5763169705180093, dt = 0.0023140594488423867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 299.54 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.490118693408272e-21,-1.1535430680982753e-21,1.7834944815585162e-17)
    sum a = (-4.2450411340738347e-20,5.767654281085826e-21,-2.514471823749853e-16)
    sum e = 3.160718732654296e-09
    sum de = 1.9155635110229995e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023141458590670147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.417019748262497 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 641.10s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.578631029966852, dt = 0.0023141458590670147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 292.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.392454436106565e-21,-1.1402736759790999e-21,1.7251069822393826e-17)
    sum a = (-4.196239233195733e-20,5.702103492577651e-21,-2.5312071176332725e-16)
    sum e = 3.1607231636635823e-09
    sum de = 1.9131275601954107e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002314232298039528 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0484e+04 | 9216 |      1 | 3.023e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.556016475970942 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 641.40s (max_walltime = 641.65s)  [SPH][rank=0]
---------------- t = 3.580945175825919, dt = 0.002314232298039528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 306.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.295908349800172e-21,-1.1271536445935146e-21,1.6663353300284446e-17)
    sum a = (-4.147912687690206e-20,5.635836106607847e-21,-2.547455117786125e-16)
    sum e = 3.1607275882665007e-09
    sum de = 1.9098940542207638e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002314318720567883 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9775e+04 | 9216 |      1 | 3.095e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.91650977426803 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 641.71s > 641.65s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 20):
   -> walltime = 641.7112852690001 >= 641.653085827
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000020.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (54.0%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000020.sham              [Shamrock Dump][rank=0]
              - took 1.43 ms, bandwidth = 2.44 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 641.7112852690001 -> 671.7112852690001

[Simulation] Evolve until next trigger(s) :
   -> t = 3.600000000000002 (current = 3.5832594081239586)
   -> iter = None (current = 1574)
   -> walltime = 671.7112852690001 (current = 641.71535151)

Info: evolve_until (target_time = 3.60s, niter_max = -1, max_walltime = 671.71s)      [SPH][rank=0]
---------------- t = 3.5832594081239586, dt = 0.002314318720567883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (1.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 332.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (79.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.187065972222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.200471629663836e-21,-1.114187121078035e-21,1.6071910911105302e-17)
    sum a = (-4.100209158283967e-20,5.571299149384924e-21,-2.5631891496626573e-16)
    sum e = 3.160732004628433e-09
    sum de = 1.9058733291990044e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.71e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023144050844047907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8420e+04 | 9216 |      1 | 3.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.69246882776957 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.14s (niter = 22) global walltime = 642.04s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.5855737268445265, dt = 0.0023144050844047907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.41 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.10612812508207e-21,-1.1013675848884872e-21,1.5476864432856284e-17)
    sum a = (-4.0530795971928664e-20,5.5076545450270896e-21,-2.5783832163276657e-16)
    sum e = 3.160736410938654e-09
    sum de = 1.9010759408178197e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.72e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023144913515208126 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8310e+04 | 9216 |      1 | 3.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.594365928895026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5878881319289313, dt = 0.0023144913515208126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 271.76 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.012865329725968e-21,-1.0886938245636605e-21,1.4878341606131494e-17)
    sum a = (-4.006532603920943e-20,5.443655934318262e-21,-2.593012105386245e-16)
    sum e = 3.1607408054108562e-09
    sum de = 1.895512655062114e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.72e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023145774892708473 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1690e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65074727703127 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.5902026232804523, dt = 0.0023145774892708473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 276.20 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.186740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.9206696897543e-21,-1.0761680935754529e-21,1.4276475939422794e-17)
    sum a = (-3.960346951676929e-20,5.380727744767596e-21,-2.6070512807169656e-16)
    sum e = 3.160745186283624e-09
    sum de = 1.8891944457212912e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.72e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023146634713906125 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1513e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.492251751077006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.592517200769723, dt = 0.0023146634713906125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 275.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.829535545079448e-21,-1.0637864538496832e-21,1.3671406564624734e-17)
    sum a = (-3.9147630183522094e-20,5.319431161298717e-21,-2.6204769493669787e-16)
    sum e = 3.160749551820952e-09
    sum de = 1.8821324831811184e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.72e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023147492788607033 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9814e+04 | 9216 |      1 | 3.091e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.956583155091074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5948318642411135, dt = 0.0023147492788607033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 264.94 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186740451388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.739446080487766e-21,-1.0515442135874384e-21,1.3063278056448694e-17)
    sum a = (-3.869716972154614e-20,5.257533173714406e-21,-2.6332661317953297e-16)
    sum e = 3.160753900312678e-09
    sum de = 1.8743381296622997e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.72e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002314834900522314 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1488e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.471287318764997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5971466135199743, dt = 0.002314834900522314 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 296.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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.1865234375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.650389907583673e-21,-1.0394455815436062e-21,1.2452240234491481e-17)
    sum a = (-3.825196448257429e-20,5.195822822876111e-21,-2.6453965497590367e-16)
    sum e = 3.1607582300749698e-09
    sum de = 1.8658229327629445e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.73e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002314920333488863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1419e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.409743061434725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.5994614484204965, dt = 0.0005385515795053308 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.61 us    (0.8%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 292.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.630304567312551e-21,-1.0367187331029362e-21,1.2308367989839496e-17)
    sum a = (-3.8151132916603715e-20,5.183271041620722e-21,-2.648055077875134e-16)
    sum e = 3.160759225034778e-09
    sum de = 1.863402680485225e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.31e-03 |
|       force | 1.73e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002314940096118612 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8281e+04 | 9216 |      1 | 3.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.949599067525082 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1583                                                    [SPH][rank=0]
Info: time since start : 644.1727824540001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 36):
   -> t = 3.600000000000002 >= 3.600000000000002
--------------------------------
tfinal = 10.046178808339642
9.425000000000066
9.450000000000067
9.475000000000067
9.500000000000068
9.525000000000068
9.550000000000068
9.575000000000069
9.600000000000069
9.62500000000007
9.65000000000007
9.67500000000007
9.70000000000007
9.72500000000007
9.750000000000071
9.775000000000071
9.800000000000072
9.825000000000072
9.850000000000072
9.875000000000073
9.900000000000073
9.925000000000074
9.950000000000074
9.975000000000074
10.000000000000075
10.025000000000075
tfinal = 10.046178808339642
9.425000000000066
9.450000000000067
9.475000000000067
9.500000000000068
9.525000000000068
9.550000000000068
9.575000000000069
9.600000000000069
9.62500000000007
9.65000000000007
9.67500000000007
9.70000000000007
9.72500000000007
9.750000000000071
9.775000000000071
9.800000000000072
9.825000000000072
9.850000000000072
9.875000000000073
9.900000000000073
9.925000000000074
9.950000000000074
9.975000000000074
10.000000000000075
10.025000000000075
tfinal = 10.046178808339642
9.425000000000066
9.450000000000067
9.475000000000067
9.500000000000068
9.525000000000068
9.550000000000068
9.575000000000069
9.600000000000069
9.62500000000007
9.65000000000007
9.67500000000007
9.70000000000007
9.72500000000007
9.750000000000071
9.775000000000071
9.800000000000072
9.825000000000072
9.850000000000072
9.875000000000073
9.900000000000073
9.925000000000074
9.950000000000074
9.975000000000074
10.000000000000075
10.025000000000075
tfinal = 10.046178808339642
9.425000000000066
9.450000000000067
9.475000000000067
9.500000000000068
9.525000000000068
9.550000000000068
9.575000000000069
9.600000000000069
9.62500000000007
9.65000000000007
9.67500000000007
9.70000000000007
9.72500000000007
9.750000000000071
9.775000000000071
9.800000000000072
9.825000000000072
9.850000000000072
9.875000000000073
9.900000000000073
9.925000000000074
9.950000000000074
9.975000000000074
10.000000000000075
10.025000000000075
tfinal = 10.046178808339642
9.425000000000066
9.450000000000067
9.475000000000067
9.500000000000068
9.525000000000068
9.550000000000068
9.575000000000069
9.600000000000069
9.62500000000007
9.65000000000007
9.67500000000007
9.70000000000007
9.72500000000007
9.750000000000071
9.775000000000071
9.800000000000072
9.825000000000072
9.850000000000072
9.875000000000073
9.900000000000073
9.925000000000074
9.950000000000074
9.975000000000074
10.000000000000075
10.025000000000075
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[2.26881394e-14 9.82824261e-14 9.31036433e-14 ... 1.09536375e-13
 3.23267465e-15 0.00000000e+00]
(9216, 3)
[[2.26881394e-14 9.82824261e-14 9.31036433e-14 7.91894444e-15
  0.00000000e+00]
 [6.64647499e-06 1.15686000e-06 1.21875948e-12 4.77891478e-13
  1.39520316e-15]
 [4.18547194e-14 2.45016321e-13 2.65638354e-13 3.98642671e-14
  8.64432909e-16]
 ...
 [4.24406712e-05 5.34659812e-05 6.31637678e-05 3.73988672e-05
  9.45898147e-12]
 [3.21866550e-05 3.55392579e-05 2.54025226e-05 4.96836237e-12
  1.39592476e-13]
 [3.49663334e-14 1.36488174e-13 1.09536375e-13 3.23267465e-15
  0.00000000e+00]]
compute original rho
0.0006706413913897977 0.0
0.001100441775190624 0.0
0.0018954968931633564 0.0
0.003590874041572755 0.0
0.008108060816040083 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.600000000000002 -> 3.700000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 3.700000000000002 (current = 3.600000000000002)
   -> iter = None (current = 1582)
   -> walltime = 671.7112852690001 (current = 650.116325627)

Info: evolve_until (target_time = 3.70s, niter_max = -1, max_walltime = 671.71s)      [SPH][rank=0]
---------------- t = 3.600000000000002, dt = 0.002314940096118612 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (1.8%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 380.87 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (80.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.54201417213374e-21,-1.0247231676895846e-21,1.169528751446409e-17)
    sum a = (-3.7709987834313453e-20,5.123529884119668e-21,-2.6594106477273784e-16)
    sum e = 3.1607635380750554e-09
    sum de = 1.8543556218316786e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.73e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023150253927652076 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4331e+04 | 9216 |      1 | 3.788e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.00157430704191 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 4.93s (niter = 13) global walltime = 650.50s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.6023149400961203, dt = 0.0023150253927652076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.4%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 267.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.45522518781754e-21,-1.01293119928098e-21,1.1078312823350666e-17)
    sum a = (-3.7275701211350324e-20,5.064584838188273e-21,-2.6699938147202003e-16)
    sum e = 3.1607678204836813e-09
    sum de = 1.8442719222090616e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.73e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315110436649854 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1468e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.456489427492976 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6046299654888854, dt = 0.002315110436649854 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 1.29 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 264.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.1865234375000004
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.369430464351446e-21,-1.0012743313541105e-21,1.0458954753700804e-17)
    sum a = (-3.6846480823442414e-20,5.006127037334504e-21,-2.679852130756432e-16)
    sum e = 3.1607720785048328e-09
    sum de = 1.8335075620718203e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.74e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231519533996717 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9768e+04 | 9216 |      1 | 3.096e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.92036086104195 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6069450759255353, dt = 0.00231519533996717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.5%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 258.50 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.284620567522538e-21,-9.897518442944145e-22,9.837375482843107e-18)
    sum a = (-3.64230221725615e-20,4.94887342012169e-21,-2.68896635871354e-16)
    sum e = 3.16077631097265e-09
    sum de = 1.822073107734517e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.74e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315280133295802 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1608e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.585482854006575 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6092602712655024, dt = 0.002315280133295802 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 310.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.200781201868467e-21,-9.783601180225249e-22,9.213749382725342e-18)
    sum a = (-3.600397932640264e-20,4.8919822773847375e-21,-2.6973184922806604e-16)
    sum e = 3.1607805163458206e-09
    sum de = 1.809980968382911e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023153648542388037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.442296901279867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6115755513987984, dt = 0.0023153648542388037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.54 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.15 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.117904013698482e-21,-9.670992141568136e-22,8.588254862487008e-18)
    sum a = (-3.558946830300795e-20,4.836184601077154e-21,-2.704891349895195e-16)
    sum e = 3.1607846931138068e-09
    sum de = 1.7972436850279108e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023154495458708236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8787e+04 | 9216 |      1 | 3.201e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.03571090372827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.613890916253037, dt = 0.0023154495458708236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 311.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.035978259409259e-21,-9.559659362442223e-22,7.961074221244247e-18)
    sum a = (-3.51791999427612e-20,4.780530165478407e-21,-2.711668480915199e-16)
    sum e = 3.160788839795167e-09
    sum de = 1.7838739340553574e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023155342555477095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9902e+04 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.045660837638003 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.616206365798908, dt = 0.0023155342555477095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.7%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 317.17 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954994575208876e-21,-9.449607552251668e-22,7.332393490307197e-18)
    sum a = (-3.477380716702506e-20,4.723918072543305e-21,-2.7176343947427206e-16)
    sum e = 3.1607929549378963e-09
    sum de = 1.7698845170700468e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023156190335758627 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7600e+04 | 9216 |      1 | 3.339e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.963932595287826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6185219000544557, dt = 0.0023156190335758627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 299.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.874941103961994e-21,-9.340876355817027e-22,6.702402183379108e-18)
    sum a = (-3.4375734023419936e-20,4.6709954500655025e-21,-2.722774398628838e-16)
    sum e = 3.1607970371197134e-09
    sum de = 1.755288358737173e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157039317833095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.438239213608124 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6208375190880315, dt = 0.0023157039317833095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 311.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (77.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.795797909924546e-21,-9.233321993268703e-22,6.071293130820531e-18)
    sum a = (-3.397897305790554e-20,4.617068749610508e-21,-2.727074625490132e-16)
    sum e = 3.160801084948331e-09
    sum de = 1.7400984953745478e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157635624316067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7991e+04 | 9216 |      1 | 3.292e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.320046181643075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.623153223019815, dt = 0.0023157635624316067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 309.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.717570025997148e-21,-9.127026626104077e-22,5.439269223238793e-18)
    sum a = (-3.3587291380088143e-20,4.563064282368467e-21,-2.730522016387412e-16)
    sum e = 3.160805097017445e-09
    sum de = 1.7243282394370108e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157624452113915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1318e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.329836931555697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6254689865822467, dt = 0.0023157624452113915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 316.37 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.6402433701810934e-21,-9.02198208988883e-22,4.806546021945935e-18)
    sum a = (-3.320218282232076e-20,4.510926072772228e-21,-2.733104405964872e-16)
    sum e = 3.160809071891973e-09
    sum de = 1.7079912820707385e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315761706706203 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1383e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.389124242606208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.627784749027458, dt = 0.002315761706706203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 305.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.563800893993185e-21,-8.918122474971255e-22,4.1733251595882075e-18)
    sum a = (-3.281863109508999e-20,4.458819603239647e-21,-2.7348105476641515e-16)
    sum e = 3.1608130082765666e-09
    sum de = 1.6911010341884926e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157613376569167 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1441e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.441219622676577 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.630100510734164, dt = 0.0023157613376569167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.4882449037210675e-21,-8.815470657172036e-22,3.539810755421273e-18)
    sum a = (-3.2441567164068953e-20,4.4079201848029875e-21,-2.735630055122887e-16)
    sum e = 3.1608169049061146e-09
    sum de = 1.67367097517296e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315761330703906 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8335e+04 | 9216 |      1 | 3.253e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.631704071368127 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.05s (niter = 13) global walltime = 654.48s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.6324162720718207, dt = 0.002315761330703906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 302.34 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.413554550348371e-21,-8.713982678384568e-22,2.9062092365641104e-18)
    sum a = (-3.206845683780985e-20,4.3574629772164896e-21,-2.735553458499538e-16)
    sum e = 3.1608207605467626e-09
    sum de = 1.6557146614643298e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157616803426624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8930e+04 | 9216 |      1 | 3.186e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.1702387203488 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.634732033402525, dt = 0.0023157616803426624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 285.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.339723661034594e-21,-8.613658934726958e-22,2.272729118153462e-18)
    sum a = (-3.16980426624886e-20,4.3075215946290425e-21,-2.734572037539359e-16)
    sum e = 3.160824573996115e-09
    sum de = 1.6372457183099596e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231576238281853 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1516e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.509540716114056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6370477950828675, dt = 0.00231576238281853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 270.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.266747438349328e-21,-8.51448504491126e-22,1.6395808493375193e-18)
    sum a = (-3.133362366649781e-20,4.257704282834704e-21,-2.7326779619753784e-16)
    sum e = 3.1608283440833814e-09
    sum de = 1.6182778337530877e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157634359599953 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1404e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40747623225993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.639363557465686, dt = 0.0023157634359599953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 308.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.1946081119941585e-21,-8.416465047141512e-22,1.006976590041361e-18)
    sum a = (-3.097352078990677e-20,4.209091376947594e-21,-2.729864222108264e-16)
    sum e = 3.1608320696695203e-09
    sum de = 1.5988247533501533e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157648389543735 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7921e+04 | 9216 |      1 | 3.301e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.25709892597188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.641679320901646, dt = 0.0023157648389543735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 276.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1861979166666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.123297750804318e-21,-8.319554334117544e-22,3.7513002973411677e-19)
    sum a = (-3.061674620053218e-20,4.16009820207899e-21,-2.7261246807896913e-16)
    sum e = 3.1608357496473625e-09
    sum de = 1.5789002726665443e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231576659207781 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8008e+04 | 9216 |      1 | 3.291e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.335605641727472 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6439950857406003, dt = 0.00231576659207781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 294.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.052809614170018e-21,-8.223783340913918e-22,-2.5574382158935454e-19)
    sum a = (-3.0263828222549833e-20,4.112480276656547e-21,-2.721454013303412e-16)
    sum e = 3.1608393829417203e-09
    sum de = 1.5585182307566208e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157686963910804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1442e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.442392684513973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.646310852332678, dt = 0.0023157686963910804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.4%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 267.41 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.98313414904291e-21,-8.1290998019470565e-22,-8.854288139502946e-19)
    sum a = (-2.9915560913767063e-20,4.0646527453377376e-21,-2.7158476558653223e-16)
    sum e = 3.160842968509487e-09
    sum de = 1.5376925038160226e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157711534133084 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.412800757891763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.648626621029069, dt = 0.0023157711534133084 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 321.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.914259876800511e-21,-8.035524612447112e-22,-1.513707828460654e-18)
    sum a = (-2.957214781672236e-20,4.018482792244603e-21,-2.709301989142693e-16)
    sum e = 3.1608465053397073e-09
    sum de = 1.5164369988838488e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157739647867615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1349e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.358183372488064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6509423921824826, dt = 0.0023157739647867615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.2%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.846175043738324e-21,-7.943000038199974e-22,-2.1403630161448995e-18)
    sum a = (-2.92311183246264e-20,3.9726290734402945e-21,-2.7018141351082563e-16)
    sum e = 3.160849992453647e-09
    sum de = 1.4947656468329763e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157771319454916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.328581233527505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6532581661472694, dt = 0.0023157771319454916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 305.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.77887720712802e-21,-7.85153407859075e-22,-2.7651759460859854e-18)
    sum a = (-2.889430432142608e-20,3.925435188050177e-21,-2.6933819934857107e-16)
    sum e = 3.1608534289048332e-09
    sum de = 1.4726923996242496e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315780655800717 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1315e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.327309921732667 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6555739432792147, dt = 0.002315780655800717 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.33 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.712354313975863e-21,-7.761176534468127e-22,-3.3879277899657764e-18)
    sum a = (-2.856129428332093e-20,3.8814454624164915e-21,-2.68400430702224e-16)
    sum e = 3.1608568137791023e-09
    sum de = 1.4502312180789835e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315784536454672 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1334e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.344487861702966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6578897239350154, dt = 0.002315784536454672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.5%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 266.10 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.646598078811446e-21,-7.671800339945974e-22,-4.008399523799197e-18)
    sum a = (-2.823275001363509e-20,3.83549808808773e-21,-2.673680631724551e-16)
    sum e = 3.160860146194605e-09
    sum de = 1.4273960695718057e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157887729537622 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1330e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34097352175862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.66020550847147, dt = 0.0023157887729537622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 317.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.581597498354018e-21,-7.583508826833838e-22,-4.626372112454848e-18)
    sum a = (-2.7907290025712705e-20,3.791687907387395e-21,-2.6624112517269295e-16)
    sum e = 3.1608634253018134e-09
    sum de = 1.4042009220399361e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023157933630903343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.471365098872788 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.07s (niter = 10) global walltime = 658.40s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.662521297244424, dt = 0.0023157933630903343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 308.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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.1850043402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.5173467606706846e-21,-7.496208665304376e-22,-5.241626667813963e-18)
    sum a = (-2.7587406719440957e-20,3.748956807427174e-21,-2.6501972662544816e-16)
    sum e = 3.1608666502835127e-09
    sum de = 1.3806597362171339e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315798303260278 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6910e+04 | 9216 |      1 | 3.425e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.343208581560997 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6648370906075143, dt = 0.002315798303260278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 289.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (56.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1850043402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.453830311523774e-21,-7.409886431355071e-22,-5.853944647654711e-18)
    sum a = (-2.726857733270722e-20,3.705128752997584e-21,-2.6370405088530673e-16)
    sum e = 3.1608698203547774e-09
    sum de = 1.356786461410681e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158035883824378 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46179360093275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6671528889107745, dt = 0.0023158035883824378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 307.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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.1847873263888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3910508489177266e-21,-7.324589549125966e-22,-6.463108015248177e-18)
    sum a = (-2.6956203569140474e-20,3.6616103583965706e-21,-2.622943597459511e-16)
    sum e = 3.1608729347629383e-09
    sum de = 1.3325950284090193e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315809211882373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1299e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3137589582869 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.669468692499157, dt = 0.002315809211882373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 308.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.1845703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.3289870088826345e-21,-7.2402978496034405e-22,-7.068899425844168e-18)
    sum a = (-2.664555069117521e-20,3.620705915274723e-21,-2.607909888719674e-16)
    sum e = 3.1608759927875276e-09
    sum de = 1.3080993446025878e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158151657410803 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8228e+04 | 9216 |      1 | 3.265e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.535583234236938 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.671784501711039, dt = 0.0023158151657410803 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.4%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.70 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.90 us    (0.6%)
   LB compute        : 274.00 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2676406575749115e-21,-7.156922360259332e-22,-7.67110239284276e-18)
    sum a = (-2.6337103357017747e-20,3.578473612736588e-21,-2.591943457964423e-16)
    sum e = 3.1608789937402074e-09
    sum de = 1.2833132886329755e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158214406084426 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0922e+04 | 9216 |      1 | 2.980e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.97292576902944 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.67410031687678, dt = 0.0023158214406084426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.65 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 267.55 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.207005692575054e-21,-7.074540951311524e-22,-8.269501451034565e-18)
    sum a = (-2.603513202795437e-20,3.53760720905663e-21,-2.575049106028492e-16)
    sum e = 3.1608819369647157e-09
    sum de = 1.2582507032028452e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315828025976931 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8858e+04 | 9216 |      1 | 3.194e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.105585395521743 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6764161383173883, dt = 0.002315828025976931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 309.33 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.147062508237416e-21,-6.993088846446227e-22,-8.86388232464504e-18)
    sum a = (-2.5734341521466582e-20,3.496517029455352e-21,-2.557232365614959e-16)
    sum e = 3.1608848218367627e-09
    sum de = 1.2329253903060802e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158349104100287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461721842654367 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6787319663433653, dt = 0.0023158349104100287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.4%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 269.45 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 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.1845703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.087814211888483e-21,-6.912591364212453e-22,-9.454032098103202e-18)
    sum a = (-2.5439447280316923e-20,3.456557609702898e-21,-2.538499448563475e-16)
    sum e = 3.1608876477639235e-09
    sum de = 1.2073511068081122e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315842081817651 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1457e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.456731691725786 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6810478012537753, dt = 0.002315842081817651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 287.02 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.1845703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0292420341319475e-21,-6.833004524497033e-22,-1.0039739365615826e-17)
    sum a = (-2.5146238902426437e-20,3.416935154420209e-21,-2.5188572667908257e-16)
    sum e = 3.160890414185548e-09
    sum de = 1.1815415575154673e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315849527769063 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.423580854591744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6833636433355927, dt = 0.002315849527769063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.85 us    (2.6%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1.63 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 272.65 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 5.23 us    (1.7%)
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: 3.184353298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.97134660875678e-21,-6.754333861950189e-22,-1.0620794397270769e-17)
    sum a = (-2.4856386717722872e-20,3.376843805331533e-21,-2.4983133696262806e-16)
    sum e = 3.1608931205726154e-09
    sum de = 1.1555103905768061e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315857235832771 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.356792539226742 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.45s (niter = 8) global walltime = 661.45s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.6856794928633616, dt = 0.002315857235832771 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 265.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.184353298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.914118400319881e-21,-6.676594550096075e-22,-1.1196989278019411e-17)
    sum a = (-2.4570943899721802e-20,3.3391296314244948e-21,-2.4768760386825846e-16)
    sum e = 3.1608957664276076e-09
    sum de = 1.1292711914776864e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158651939316926 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1514e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.508357232523192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6879953500991944, dt = 0.0023158651939316926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.8%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 336.51 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.3%)
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.184353298611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.857545985215172e-21,-6.59970117046621e-22,-1.1768118088790652e-17)
    sum a = (-2.4287390287808873e-20,3.3007222354254578e-21,-2.454554139137727e-16)
    sum e = 3.1608983512843567e-09
    sum de = 1.1028374807806703e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158733907012114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1441e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.442392606631543 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6903112152931263, dt = 0.0023158733907012114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.4%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 269.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (62.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.184136284722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.801627772368258e-21,-6.523705427476852e-22,-1.2333977024912629e-17)
    sum a = (-2.4008032780311882e-20,3.2617267954944786e-21,-2.4313572005046543e-16)
    sum e = 3.160900874707894e-09
    sum de = 1.0762227050306895e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158818158376636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8860e+04 | 9216 |      1 | 3.193e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.107685700492805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.6926270886838277, dt = 0.0023158818158376636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 298.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.7463514006935405e-21,-6.448619006612158e-22,-1.2894364559209938e-17)
    sum a = (-2.3732016929567605e-20,3.2242421841341072e-21,-2.4072953857903994e-16)
    sum e = 3.160903336294275e-09
    sum de = 1.049440234215213e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315890460424988 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9891e+04 | 9216 |      1 | 3.083e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.04071754467092 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.6949429704996652, dt = 0.002315890460424988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.7%)
   patch tree reduce : 2.49 us    (0.6%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 388.34 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.691710334242253e-21,-6.374383128346349e-22,-1.344908158513211e-17)
    sum a = (-2.3458611070221752e-20,3.188315806778809e-21,-2.3823794319429756e-16)
    sum e = 3.1609057356703924e-09
    sum de = 1.0225033561529598e-12
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023158993172280548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3787189744593 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 3.69725886096009, dt = 0.0023158993172280548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 19.46 us   (6.1%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 278.53 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.63769911098583e-21,-6.300961261787328e-22,-1.3997931544308047e-17)
    sum a = (-2.3188169834711988e-20,3.1500941406572336e-21,-2.3566207044207877e-16)
    sum e = 3.160908072493791e-09
    sum de = 9.9542527232258e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159083809451294 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.531492461547316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.699574760277318, dt = 0.0004252397226838234 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 297.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 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.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.628151753533341e-21,-6.288008705836435e-22,-1.4095161686588455e-17)
    sum a = (-2.3141022353457788e-20,3.1436148950969685e-21,-2.3519451748384354e-16)
    sum e = 3.160908464405048e-09
    sum de = 9.903747299347027e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159101556643074 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2142e+04 | 9216 |      1 | 2.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.33913546311742 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 1627                                                    [SPH][rank=0]
Info: time since start : 663.537332061 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 37):
   -> t = 3.700000000000002 >= 3.700000000000002
--------------------------------
tfinal = 10.67406498386087
10.050000000000075
10.075000000000076
10.100000000000076
10.125000000000076
10.150000000000077
10.175000000000077
10.200000000000077
10.225000000000078
10.250000000000078
10.275000000000079
10.300000000000079
10.32500000000008
10.35000000000008
10.37500000000008
10.40000000000008
10.42500000000008
10.450000000000081
10.475000000000081
10.500000000000082
10.525000000000082
10.550000000000082
10.575000000000083
10.600000000000083
10.625000000000083
10.650000000000084
tfinal = 10.67406498386087
10.050000000000075
10.075000000000076
10.100000000000076
10.125000000000076
10.150000000000077
10.175000000000077
10.200000000000077
10.225000000000078
10.250000000000078
10.275000000000079
10.300000000000079
10.32500000000008
10.35000000000008
10.37500000000008
10.40000000000008
10.42500000000008
10.450000000000081
10.475000000000081
10.500000000000082
10.525000000000082
10.550000000000082
10.575000000000083
10.600000000000083
10.625000000000083
10.650000000000084
tfinal = 10.67406498386087
10.050000000000075
10.075000000000076
10.100000000000076
10.125000000000076
10.150000000000077
10.175000000000077
10.200000000000077
10.225000000000078
10.250000000000078
10.275000000000079
10.300000000000079
10.32500000000008
10.35000000000008
10.37500000000008
10.40000000000008
10.42500000000008
10.450000000000081
10.475000000000081
10.500000000000082
10.525000000000082
10.550000000000082
10.575000000000083
10.600000000000083
10.625000000000083
10.650000000000084
tfinal = 10.67406498386087
10.050000000000075
10.075000000000076
10.100000000000076
10.125000000000076
10.150000000000077
10.175000000000077
10.200000000000077
10.225000000000078
10.250000000000078
10.275000000000079
10.300000000000079
10.32500000000008
10.35000000000008
10.37500000000008
10.40000000000008
10.42500000000008
10.450000000000081
10.475000000000081
10.500000000000082
10.525000000000082
10.550000000000082
10.575000000000083
10.600000000000083
10.625000000000083
10.650000000000084
tfinal = 10.67406498386087
10.050000000000075
10.075000000000076
10.100000000000076
10.125000000000076
10.150000000000077
10.175000000000077
10.200000000000077
10.225000000000078
10.250000000000078
10.275000000000079
10.300000000000079
10.32500000000008
10.35000000000008
10.37500000000008
10.40000000000008
10.42500000000008
10.450000000000081
10.475000000000081
10.500000000000082
10.525000000000082
10.550000000000082
10.575000000000083
10.600000000000083
10.625000000000083
10.650000000000084
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.35207026e-14 6.38754148e-14 5.72287346e-14 ... 6.61082344e-14
 1.29275853e-15 0.00000000e+00]
(9216, 3)
[[1.35207026e-14 6.38754148e-14 5.72287346e-14 5.04822299e-15
  8.63118476e-21]
 [6.39411264e-06 4.81915150e-07 7.53541865e-13 2.71764175e-13
  1.43987615e-15]
 [2.57551377e-14 1.51312779e-13 1.56848043e-13 1.66963527e-14
  0.00000000e+00]
 ...
 [4.24731491e-05 5.34617585e-05 6.24420022e-05 3.24954689e-05
  3.67598158e-12]
 [3.20582250e-05 3.49713207e-05 2.34473828e-05 2.99619363e-12
  5.58586524e-14]
 [2.19324020e-14 8.44358176e-14 6.61082344e-14 1.29275853e-15
  0.00000000e+00]]
compute original rho
0.0006715933824431096 0.0
0.0011043883344312908 0.0
0.0019110684737820205 0.0
0.003650800833123126 0.0
0.008367438879120292 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.700000000000002 -> 3.800000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 3.800000000000002 (current = 3.700000000000002)
   -> iter = None (current = 1626)
   -> walltime = 671.7112852690001 (current = 669.9493986790001)

Info: evolve_until (target_time = 3.80s, niter_max = -1, max_walltime = 671.71s)      [SPH][rank=0]
---------------- t = 3.700000000000002, dt = 0.0023159101556643074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.04 us    (2.2%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 345.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (75.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.574569264308813e-21,-6.215218724681186e-22,-1.4639751647240302e-17)
    sum a = (-2.2872560740194762e-20,3.1075433624619833e-21,-2.3250576297973504e-16)
    sum e = 3.1609107569781468e-09
    sum de = 9.632105930744903e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159193698679944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.867e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.561142462010057 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 670.34s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.7023159101556664, dt = 0.0023159193698679944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 339.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.521909129494674e-21,-6.143667624912419e-22,-1.5175102790411542e-17)
    sum a = (-2.260956647888449e-20,3.071910842023445e-21,-2.297501697023504e-16)
    sum e = 3.160912956241359e-09
    sum de = 9.358695640371113e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315928878635093 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.969e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.085104452242234 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 670.63s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.7046318295255345, dt = 0.002315928878635093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 274.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.469851543137164e-21,-6.072937215841854e-22,-1.570399697732432e-17)
    sum a = (-2.2349662360235167e-20,3.0363048526954566e-21,-2.269142056154577e-16)
    sum e = 3.1609150919888906e-09
    sum de = 9.084287733562999e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315938591049278 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.525145313783074 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 670.93s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.7069477584041697, dt = 0.002315938591049278 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.5%)
   LB compute        : 280.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4183920489075796e-21,-6.003031403634162e-22,-1.6226232397499566e-17)
    sum a = (-2.2092234963448444e-20,3.0015288023231446e-21,-2.239993240770432e-16)
    sum e = 3.1609171640786668e-09
    sum de = 8.809009620427201e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159485123885604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8157e+04 | 9216 |      1 | 3.273e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.47259647844359 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 671.25s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.709263696995219, dt = 0.0023159485123885604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 285.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
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.183485243055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3675256535171145e-21,-5.933920556454273e-22,-1.6741627955373195e-17)
    sum a = (-2.183759156724295e-20,2.967309498151002e-21,-2.2100694409793866e-16)
    sum e = 3.1609191723235595e-09
    sum de = 8.532988104408905e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.75e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159586490498884 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1639e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.622369486679805 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 671.55s (max_walltime = 671.71s)  [SPH][rank=0]
---------------- t = 3.7115796455076073, dt = 0.0023159586490498884 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 298.11 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1834852430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.31724554813564e-21,-5.865594947402003e-22,-1.7250005800050545e-17)
    sum a = (-2.1587166572501512e-20,2.9319818049001337e-21,-2.1793853515051426e-16)
    sum e = 3.160921116565712e-09
    sum de = 8.256348817199353e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315969009509699 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50440689116596 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 671.84s > 671.71s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 21):
   -> walltime = 671.839110214 >= 671.7112852690001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000021.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (53.9%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000021.sham              [Shamrock Dump][rank=0]
              - took 1.46 ms, bandwidth = 2.38 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 671.839110214 -> 701.839110214

[Simulation] Evolve until next trigger(s) :
   -> t = 3.800000000000002 (current = 3.713895604156657)
   -> iter = None (current = 1632)
   -> walltime = 701.839110214 (current = 671.8433015510001)

Info: evolve_until (target_time = 3.80s, niter_max = -1, max_walltime = 701.84s)      [SPH][rank=0]
---------------- t = 3.713895604156657, dt = 0.002315969009509699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (1.1%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 309.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.267540317959702e-21,-5.79809970093172e-22,-1.775119153944125e-17)
    sum a = (-2.1337052951899792e-20,2.8989300566479796e-21,-2.1479561514631086e-16)
    sum e = 3.1609229966762212e-09
    sum de = 7.97921621662996e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002315979604089684 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8979e+04 | 9216 |      1 | 3.180e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.216202395975614 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.32s (niter = 23) global walltime = 672.16s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.716211573166167, dt = 0.002315979604089684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 299.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.218413781127723e-21,-5.7313439189411245e-22,-1.8245014350529697e-17)
    sum a = (-2.1091334986812423e-20,2.8657569598143747e-21,-2.1157975147045406e-16)
    sum e = 3.160924812554861e-09
    sum de = 7.701713538366897e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023159904446676304 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1515e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.510824569719208 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7185275527702566, dt = 0.0023159904446676304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 277.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.169850964375254e-21,-5.6653571892521615e-22,-1.873130709580295e-17)
    sum a = (-2.0849487014207036e-20,2.832699628497567e-21,-2.0829255208941882e-16)
    sum e = 3.1609265641297883e-09
    sum de = 7.423962758070556e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316001544333621 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1381e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38948851698054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.720843543214924, dt = 0.002316001544333621 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 297.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.1218435734292645e-21,-5.600135143562372e-22,-1.9209906407005513e-17)
    sum a = (-2.0609574044444607e-20,2.799673455170866e-21,-2.049356693871957e-16)
    sum e = 3.1609282513572545e-09
    sum de = 7.146084546757822e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.76e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023160129169986143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1294e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.311143262432147 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7231595447592576, dt = 0.0023160129169986143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.49 us    (2.0%)
   patch tree reduce : 2.52 us    (0.7%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 353.61 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.1830512152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.074389282196203e-21,-5.535676362448539e-22,-1.9680652791545472e-17)
    sum a = (-2.0372991801876122e-20,2.767328874568736e-21,-2.0151079977670777e-16)
    sum e = 3.160929874221295e-09
    sum de = 6.868198230367427e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023160245769702006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1366e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37683596713339 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.725475557676256, dt = 0.0023160245769702006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.4%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 269.51 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1830512152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.027478938147141e-21,-5.471959092424615e-22,-2.0143390735423568e-17)
    sum a = (-2.0137538477207265e-20,2.736060518255037e-21,-1.9801968133440456e-16)
    sum e = 3.1609314327334143e-09
    sum de = 6.590421753509053e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023160365385042894 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.985e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.928778769266927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7277915822532264, dt = 0.0023160365385042894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.6%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 262.11 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (62.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1830512152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.981112336621054e-21,-5.408952557314336e-22,-2.059796879461546e-17)
    sum a = (-1.9904613411567397e-20,2.704726145557807e-21,-1.9446409131742898e-16)
    sum e = 3.1609329269322532e-09
    sum de = 6.312871681412437e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316048815347239 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1677e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65852536901812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7301076187917306, dt = 0.002316048815347239 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 305.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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.1830512152777772
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9352819755811265e-21,-5.346672909933845e-22,-2.1044239684665915e-17)
    sum a = (-1.9676012703483593e-20,2.6724195284749295e-21,-1.9084584123286234e-16)
    sum e = 3.160934356883279e-09
    sum de = 6.035663099677906e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023160614202801296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8008e+04 | 9216 |      1 | 3.291e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.338680988050307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.732423667607078, dt = 0.0023160614202801296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.2%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 307.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.889975861451339e-21,-5.285152521935117e-22,-2.148206035290777e-17)
    sum a = (-1.9450514386362703e-20,2.6424871519987125e-21,-1.8716678211859488e-16)
    sum e = 3.160935722678421e-09
    sum de = 5.75890965454112e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316074364678702 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1510e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.507819685288137 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.734739729027358, dt = 0.002316074364678702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 288.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.845188206506014e-21,-5.224296633064311e-22,-2.1911292075495442e-17)
    sum a = (-1.9226172111328823e-20,2.6123210702406254e-21,-1.8342879329395887e-16)
    sum e = 3.160937024435748e-09
    sum de = 5.482723446195264e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316087658102053 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9738e+04 | 9216 |      1 | 3.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.904404809294892 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7370558033920367, dt = 0.002316087658102053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.32 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 269.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.800918579416547e-21,-5.164142236351317e-22,-2.233180050967382e-17)
    sum a = (-1.90047893892691e-20,2.581962104271932e-21,-1.7963379644758994e-16)
    sum e = 3.1609382622990866e-09
    sum de = 5.207215061785356e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316101307920933 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1482e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48216418832228 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.739371891050139, dt = 0.002316101307920933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 268.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.757157873867787e-21,-5.1046933039804875e-22,-2.2743455808005525e-17)
    sum a = (-1.8785681752851864e-20,2.552322950923503e-21,-1.7578373058792133e-16)
    sum e = 3.1609394364376843e-09
    sum de = 4.932493522830504e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316115318997057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1557e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.550539697592274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.74168799235806, dt = 0.002316115318997057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 295.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (58.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.713901794178928e-21,-5.045922338753222e-22,-2.3146132627960265e-17)
    sum a = (-1.856994393663459e-20,2.522273971580824e-21,-1.7188057550078775e-16)
    sum e = 3.1609405470458297e-09
    sum de = 4.658666255579225e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316129693422079 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.004e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.753811795517695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.744004107677057, dt = 0.002316129693422079 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.0%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 345.22 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.671141168015136e-21,-4.987851336227743e-22,-2.3539710253880704e-17)
    sum a = (-1.8356022340093734e-20,2.4944622981161693e-21,-1.6792633588672614e-16)
    sum e = 3.1609415943424826e-09
    sum de = 4.3858390509589626e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023161444303252707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1363e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.375432492825087 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.746320237370479, dt = 0.0023161444303252707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (1.7%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1.26 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 343.62 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 us    (70.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.628873724299262e-21,-4.930396682473614e-22,-2.3924072635619376e-17)
    sum a = (-1.8144571926363953e-20,2.4649287927678854e-21,-1.6392303555156023e-16)
    sum e = 3.160942578570892e-09
    sum de = 4.114116053107191e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023161595257524988 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1323e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.339097462389198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7486363818008046, dt = 0.0023161595257524988 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 277.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5870929292831956e-21,-4.873647669114141e-22,-2.4299108424954054e-17)
    sum a = (-1.7935847518223536e-20,2.437328997377072e-21,-1.5987273307297746e-16)
    sum e = 3.1609434999982124e-09
    sum de = 3.843599722174572e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023161749726238997 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9198e+04 | 9216 |      1 | 3.156e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.41723404778702 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.750952541326557, dt = 0.0023161749726238997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 284.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5457920247519e-21,-4.817514278309487e-22,-2.4664711074716292e-17)
    sum a = (-1.7728914711019177e-20,2.4089716657182622e-21,-1.557775024595781e-16)
    sum e = 3.160944358915105e-09
    sum de = 3.574390837508229e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023161907607677683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.538062025244074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.753268716299181, dt = 0.0023161907607677683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 277.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.504968143250409e-21,-4.762046696023165e-22,-2.5020778851321978e-17)
    sum a = (-1.7524775248932224e-20,2.3815241623350315e-21,-1.5163943999572582e-16)
    sum e = 3.160945155635353e-09
    sum de = 3.3065884445764556e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023162068770325997 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1491e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.491457914535626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7555849070599487, dt = 0.0023162068770325997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.2%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 303.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4646135362684186e-21,-4.707203560922827e-22,-2.5367214894146116e-17)
    sum a = (-1.732351898420314e-20,2.353562449234364e-21,-1.4746066216335362e-16)
    sum e = 3.1609458904954556e-09
    sum de = 3.0402898453861974e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023162233054727327 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1357e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.370762213310964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.757901113936981, dt = 0.0023162233054727327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 280.81 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.424721425784984e-21,-4.653013415518745e-22,-2.5703927259441346e-17)
    sum a = (-1.712414238571778e-20,2.3261806464405065e-21,-1.4324330515887578e-16)
    sum e = 3.1609465638542244e-09
    sum de = 2.775590572545443e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316240027602829 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.494258836006576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.760217337242454, dt = 0.002316240027602829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 279.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
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.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3852887330821513e-21,-4.599450886245502e-22,-2.603082896625351e-17)
    sum a = (-1.6926658611749435e-20,2.3000404516461013e-21,-1.3898951939593127e-16)
    sum e = 3.160947176092371e-09
    sum de = 2.512584381920989e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316257022714407 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1509e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.508954082266406 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7625335772700566, dt = 0.002316257022714407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 269.53 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.346310999630559e-21,-4.546479079102736e-22,-2.6347838022244714e-17)
    sum a = (-1.6731333342013513e-20,2.2734364399594497e-21,-1.3470146777429463e-16)
    sum e = 3.1609477276120916e-09
    sum de = 2.251363230440852e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023162742682451406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52030554183159 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7648498342927708, dt = 0.0023162742682451406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 273.72 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1832682291666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3077827942108286e-21,-4.494127383853338e-22,-2.6654877451144315e-17)
    sum a = (-1.6539052652003435e-20,2.2467361803754e-21,-1.30381333170452e-16)
    sum e = 3.1609482188366675e-09
    sum de = 1.9920172376551562e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231629174019132 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1604e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59501652940787 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7671661085610157, dt = 0.00231629174019132 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 302.90 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.269696249477221e-21,-4.442395800497306e-22,-2.6951875347879207e-17)
    sum a = (-1.6348810241629456e-20,2.221195776615468e-21,-1.2603130569222794e-16)
    sum e = 3.160948650210023e-09
    sum de = 1.7346346884357535e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023163094135522726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1482e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.484610550343437 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.66s (niter = 19) global walltime = 679.00s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.769482400301207, dt = 0.0023163094135522726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 263.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2320476947352782e-21,-4.391242142456237e-22,-2.723876488133288e-17)
    sum a = (-1.6160236672989495e-20,2.195251561254545e-21,-1.216535823472259e-16)
    sum e = 3.160949022196298e-09
    sum de = 1.4793020063767186e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316327262794486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50367401101046 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.771798709714759, dt = 0.002316327262794486 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 308.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.194833725569935e-21,-4.340693279741726e-22,-2.751548430985072e-17)
    sum a = (-1.5974339198507245e-20,2.1705384523619245e-21,-1.1725037551973804e-16)
    sum e = 3.1609493352794447e-09
    sum de = 1.226103747723519e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023163452623233063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1323e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.341508080517418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7741150369775536, dt = 0.0023163452623233063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.78 us    (2.6%)
   patch tree reduce : 2.68 us    (0.9%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 275.45 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1580469433752133e-21,-4.290701425105467e-22,-2.778197702763036e-17)
    sum a = (-1.579026571366811e-20,2.1454298635524984e-21,-1.1282390021246767e-16)
    sum e = 3.1609495899627636e-09
    sum de = 9.751225823497943e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316363386949856 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1519e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.518740831380974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7764313822398767, dt = 0.002316363386949856 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 287.34 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.121684104383947e-21,-4.241297607799182e-22,-2.8038191556709675e-17)
    sum a = (-1.5607983564035807e-20,2.1208945786801185e-21,-1.0837638087009486e-16)
    sum e = 3.160949786768493e-09
    sum de = 7.264392795579384e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023163816123414126 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1385e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.397651184352018 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7787477456268266, dt = 0.0023163816123414126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 287.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0857411263789775e-21,-4.192453615411021e-22,-2.828408157705246e-17)
    sum a = (-1.5428530867887026e-20,2.0963594236464514e-21,-1.0391004267886806e-16)
    sum e = 3.160949926237364e-09
    sum de = 4.801326948615771e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023163999154436218 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1349e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.36541464583543 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.781064127239168, dt = 0.0023163999154436218 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.5%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 272.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.050210395090024e-21,-4.144177084217826e-22,-2.851960591938919e-17)
    sum a = (-1.5249869029241344e-20,2.0724845600861472e-21,-9.942711369909262e-17)
    sum e = 3.1609500089281445e-09
    sum de = 2.3627975903882784e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023164182748595277 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.292686792922126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7833805271546113, dt = 0.0023164182748595277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.2%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.60 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.015092216408291e-21,-4.0964460186613735e-22,-2.874472857428754e-17)
    sum a = (-1.507508424113208e-20,2.0490152554478172e-21,-9.492982828160547e-17)
    sum e = 3.1609500354172255e-09
    sum de = -5.044537427776288e-16
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023164366712048446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0924e+04 | 9216 |      1 | 2.980e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.98189436858584 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.785696945429471, dt = 0.0023164366712048446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.2%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 320.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.980374185235059e-21,-4.0492544769700567e-22,-2.8959418712724424e-17)
    sum a = (-1.4901402204020487e-20,2.0246910267042065e-21,-9.042041650344609e-17)
    sum e = 3.1609500062981386e-09
    sum de = -2.4376713038313398e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316455087360891 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6944e+04 | 9216 |      1 | 3.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.380679035055728 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.788013382100676, dt = 0.002316455087360891 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.3%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.63 us    (0.5%)
   LB compute        : 317.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183268229166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.946056915553393e-21,-4.002635336946764e-22,-2.916365066300025e-17)
    sum a = (-1.4730486358680223e-20,2.0015305225382264e-21,-8.590111002267574e-17)
    sum e = 3.1609499221811355e-09
    sum de = -4.7981693343304156e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023164735087141913 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1323e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34326021903105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7903298371880365, dt = 0.0023164735087141913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 286.76 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.95 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.1834852430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9121320580738584e-21,-3.956538236575492e-22,-2.9357403923711267e-17)
    sum a = (-1.4560784094883007e-20,1.9789151825190957e-21,-8.137413282945981e-17)
    sum e = 3.1609497836927214e-09
    sum de = -7.131247940806204e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316491923308024 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1398e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41083315191613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.7926463106967505, dt = 0.002316491923308024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.73 us    (2.5%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 283.51 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1837022569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8785986753169355e-21,-3.9109596548063986e-22,-2.9540663133597277e-17)
    sum a = (-1.4393032633539582e-20,1.9558917990371964e-21,-7.684170575500101e-17)
    sum e = 3.160949591475208e-09
    sum de = -9.436235475816853e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023165103219319407 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1336e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.354958931880223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7949628026200584, dt = 0.0023165103219319407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.19 us    (2.4%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 322.56 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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.1837022569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.845451364671774e-21,-3.8659176260166384e-22,-2.971341807276861e-17)
    sum a = (-1.4227340523665064e-20,1.9331227453866097e-21,-7.230605262048956e-17)
    sum e = 3.1609493461862566e-09
    sum de = -1.1712480026299974e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316528698145176 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0847e+04 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.913025319739713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.79727931294199, dt = 0.002316528698145176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.89 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.3%)
   LB compute        : 337.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 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.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8126852318790963e-21,-3.8213996614825564e-22,-2.987566367507672e-17)
    sum a = (-1.4063437397046114e-20,1.910784360144675e-21,-6.776938046239432e-17)
    sum e = 3.1609490484984174e-09
    sum de = -1.3959349431768257e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316547048235633 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0965e+04 | 9216 |      1 | 2.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.020083832961802 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.7995958416401354, dt = 0.0004041583598666243 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8071912277797035e-21,-3.813935762036611e-22,-2.9897798571125357e-17)
    sum a = (-1.403725886572124e-20,1.9070588099297877e-21,-6.700347886825302e-17)
    sum e = 3.160948966030906e-09
    sum de = -1.4333870133606088e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023165502253552597 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0271e+04 | 9216 |      1 | 3.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.778980172982758 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1671                                                    [SPH][rank=0]
Info: time since start : 683.1862840160001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 38):
   -> t = 3.800000000000002 >= 3.800000000000002
--------------------------------
tfinal = 11.301951159382098
10.675000000000084
10.700000000000085
10.725000000000085
10.750000000000085
10.775000000000086
10.800000000000086
10.825000000000086
10.850000000000087
10.875000000000087
10.900000000000087
10.925000000000088
10.950000000000088
10.975000000000088
11.000000000000089
11.02500000000009
11.05000000000009
11.07500000000009
11.10000000000009
11.12500000000009
11.150000000000091
11.175000000000091
11.200000000000092
11.225000000000092
11.250000000000092
11.275000000000093
11.300000000000093
tfinal = 11.301951159382098
10.675000000000084
10.700000000000085
10.725000000000085
10.750000000000085
10.775000000000086
10.800000000000086
10.825000000000086
10.850000000000087
10.875000000000087
10.900000000000087
10.925000000000088
10.950000000000088
10.975000000000088
11.000000000000089
11.02500000000009
11.05000000000009
11.07500000000009
11.10000000000009
11.12500000000009
11.150000000000091
11.175000000000091
11.200000000000092
11.225000000000092
11.250000000000092
11.275000000000093
11.300000000000093
tfinal = 11.301951159382098
10.675000000000084
10.700000000000085
10.725000000000085
10.750000000000085
10.775000000000086
10.800000000000086
10.825000000000086
10.850000000000087
10.875000000000087
10.900000000000087
10.925000000000088
10.950000000000088
10.975000000000088
11.000000000000089
11.02500000000009
11.05000000000009
11.07500000000009
11.10000000000009
11.12500000000009
11.150000000000091
11.175000000000091
11.200000000000092
11.225000000000092
11.250000000000092
11.275000000000093
11.300000000000093
tfinal = 11.301951159382098
10.675000000000084
10.700000000000085
10.725000000000085
10.750000000000085
10.775000000000086
10.800000000000086
10.825000000000086
10.850000000000087
10.875000000000087
10.900000000000087
10.925000000000088
10.950000000000088
10.975000000000088
11.000000000000089
11.02500000000009
11.05000000000009
11.07500000000009
11.10000000000009
11.12500000000009
11.150000000000091
11.175000000000091
11.200000000000092
11.225000000000092
11.250000000000092
11.275000000000093
11.300000000000093
tfinal = 11.301951159382098
10.675000000000084
10.700000000000085
10.725000000000085
10.750000000000085
10.775000000000086
10.800000000000086
10.825000000000086
10.850000000000087
10.875000000000087
10.900000000000087
10.925000000000088
10.950000000000088
10.975000000000088
11.000000000000089
11.02500000000009
11.05000000000009
11.07500000000009
11.10000000000009
11.12500000000009
11.150000000000091
11.175000000000091
11.200000000000092
11.225000000000092
11.250000000000092
11.275000000000093
11.300000000000093
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.29275218e-14 3.49832485e-14 5.34579433e-14 ... 5.91826281e-14
 1.11840412e-15 0.00000000e+00]
(9216, 3)
[[1.29275218e-14 3.49832485e-14 5.34579433e-14 3.65781936e-15
  0.00000000e+00]
 [6.14192830e-06 1.16856505e-13 6.71848088e-13 2.29696627e-13
  1.33547436e-15]
 [2.29491126e-14 1.17753197e-13 9.24951613e-14 1.06653778e-14
  0.00000000e+00]
 ...
 [4.25007481e-05 5.34450943e-05 6.16523381e-05 2.77081626e-05
  1.71239224e-12]
 [3.19259309e-05 3.43915317e-05 2.15175211e-05 2.62383432e-12
  5.51413012e-15]
 [1.97933589e-14 7.54425514e-14 5.91826281e-14 1.11840412e-15
  0.00000000e+00]]
compute original rho
0.0006725870965616107 0.0
0.0011084975223506217 0.0
0.0019272212567503202 0.0
0.0037130893505126126 0.0
0.008641723891719051 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.800000000000002 -> 3.900000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 3.900000000000002 (current = 3.800000000000002)
   -> iter = None (current = 1670)
   -> walltime = 701.839110214 (current = 689.5941665930001)

Info: evolve_until (target_time = 3.90s, niter_max = -1, max_walltime = 701.84s)      [SPH][rank=0]
---------------- t = 3.800000000000002, dt = 0.0023165502253552597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.0%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 350.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (81.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7746785203486602e-21,-3.7697653581316575e-22,-3.005286072246866e-17)
    sum a = (-1.387332378887597e-20,1.8848095138507932e-21,-6.244262165110278e-17)
    sum e = 3.1609486332476e-09
    sum de = -1.6560144137282246e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316568564113559 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6650e+04 | 9216 |      1 | 3.458e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.115563759548856 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.77s (niter = 8) global walltime = 689.94s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.802316550225357, dt = 0.002316568564113559 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 298.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7427299665263894e-21,-3.7263599023046153e-22,-3.019223060939619e-17)
    sum a = (-1.3713924461315592e-20,1.8628641569947117e-21,-5.791147350606404e-17)
    sum e = 3.1609482238339353e-09
    sum de = -1.874093300789602e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023165868575421565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9988e+04 | 9216 |      1 | 3.073e-01 | 0.0% |   0.6% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.13604300954979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8046331187894706, dt = 0.0023165868575421565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 329.58 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.711145097540861e-21,-3.6834591669656896e-22,-3.032113921017088e-17)
    sum a = (-1.3555807654703324e-20,1.841247895062e-21,-5.338611677457828e-17)
    sum e = 3.16094776442405e-09
    sum de = -2.089058964465107e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316605129154185 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1315e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33783040458255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8069497056470127, dt = 0.002316605129154185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 308.49 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.183919270833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.679924721032883e-21,-3.6410552297527374e-22,-3.043957207110156e-17)
    sum a = (-1.3399225936695069e-20,1.820821248426529e-21,-4.886887741562205e-17)
    sum e = 3.160947255572088e-09
    sum de = -2.300844596983583e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316623385436498 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8833e+04 | 9216 |      1 | 3.196e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.091466933413635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.809266310776167, dt = 0.002316623385436498 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 306.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1839192708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6490651421007784e-21,-3.5991104154324625e-22,-3.054755052535575e-17)
    sum a = (-1.3245738210845529e-20,1.7997582248480827e-21,-4.436190866541345e-17)
    sum e = 3.160946698021704e-09
    sum de = -2.5093973478887736e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316641634078456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.035e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.483230541729686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8115829341616037, dt = 0.002316641634078456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 297.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1839192708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6185573028438318e-21,-3.557661034831349e-22,-3.064510069527631e-17)
    sum a = (-1.309305753547721e-20,1.7784034470798288e-21,-3.986735426955046e-17)
    sum e = 3.160946092527197e-09
    sum de = -2.714666269140865e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023166598841668114 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1366e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.384648360820375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.813899575795682, dt = 0.0023166598841668114 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.69 us    (2.3%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 306.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 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.1839192708333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5884020043008823e-21,-3.516708100251225e-22,-3.073225365976543e-17)
    sum a = (-1.2941740361902354e-20,1.758332518905836e-21,-3.538734633434305e-17)
    sum e = 3.1609454398544665e-09
    sum de = -2.9166024025482247e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023166781458755815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1128e+04 | 9216 |      1 | 2.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.168829431140306 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.816216235679849, dt = 0.0023166781458755815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 26.47 us   (8.2%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 280.16 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.558595470145975e-21,-3.476206476234444e-22,-3.080904542427112e-17)
    sum a = (-1.2793456940274917e-20,1.737833679745348e-21,-3.092399511673699e-17)
    sum e = 3.1609447407805364e-09
    sum de = -3.115158773336311e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023166964301586514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1561e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.561274582795278 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8185329138257242, dt = 0.0023166964301586514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.529128600665928e-21,-3.4361839790747493e-22,-3.0875516859299784e-17)
    sum a = (-1.2646264792673159e-20,1.7180172926656585e-21,-2.647939652147393e-17)
    sum e = 3.160943996093094e-09
    sum de = -3.3102904057975645e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316714748449893 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1450e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461352045339215 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.14s (niter = 7) global walltime = 692.34s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.820849610255883, dt = 0.002316714748449893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 322.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 5.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.500001312235808e-21,-3.3966113180387765e-22,-3.0931713674944116e-17)
    sum a = (-1.2499529484783323e-20,1.6984201184467595e-21,-2.205562721014201e-17)
    sum e = 3.16094320659004e-09
    sum de = -3.5019542801894205e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316733112383914 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1322e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.345726529326974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.823166325004333, dt = 0.002316733112383914 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.5%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1.62 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 269.30 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.471213257151942e-21,-3.3574905617433076e-22,-3.097768637108629e-17)
    sum a = (-1.2357065891453442e-20,1.678566166166581e-21,-1.7654742476451057e-17)
    sum e = 3.160942373079012e-09
    sum de = -3.690109369273328e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316751533541333 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1305e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.329995334421668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.825483058116717, dt = 0.002316751533541333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.5%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.70 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 270.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4427499683007984e-21,-3.318832999554395e-22,-3.101349018507786e-17)
    sum a = (-1.2212741757232276e-20,1.659601105119366e-21,-1.3278779214548075e-17)
    sum e = 3.160941496376946e-09
    sum de = -3.874716590958657e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231677002322674 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9371e+04 | 9216 |      1 | 3.138e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.580282428384567 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.827799809650258, dt = 0.00231677002322674 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.5%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 267.75 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.414623047541601e-21,-3.280603244921138e-22,-3.1039185052929855e-17)
    sum a = (-1.2073097381033836e-20,1.6410189208311821e-21,-8.929758698604394e-18)
    sum e = 3.160940577309615e-09
    sum de = -4.055738833059902e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023167885922843233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1376e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.395033721858223 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.830116579673485, dt = 0.0023167885922843233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 267.19 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3868140093626863e-21,-3.2427998674170396e-22,-3.105483557574175e-17)
    sum a = (-1.1933568890838116e-20,1.6213576304953389e-21,-4.609665385180161e-18)
    sum e = 3.1609396167111696e-09
    sum de = -4.2331409375257947e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231680725095496 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.388464542070167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8324333682657694, dt = 0.00231680725095496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 287.28 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3593278382502353e-21,-3.2054630290168457e-22,-3.106051091040835e-17)
    sum a = (-1.179646768586491e-20,1.6031302822055169e-21,-3.2047386186096984e-19)
    sum e = 3.1609386154236953e-09
    sum de = -4.406889693459997e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023168260087767 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1344e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.366176186872373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8347501755167244, dt = 0.0023168260087767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 302.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3321562773423712e-21,-3.1685331139454395e-22,-3.105628477767613e-17)
    sum a = (-1.1660905659415168e-20,1.5840108132198305e-21,3.9358736875491355e-18)
    sum e = 3.1609375742967593e-09
    sum de = -4.576953810185446e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023168448745291563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.320906499769844 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.81s (niter = 6) global walltime = 694.42s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8370670015255013, dt = 0.0023168448745291563 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1.40 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 264.40 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3052967672759913e-21,-3.1320543773980077e-22,-3.104223536046301e-17)
    sum a = (-1.1526900274795775e-20,1.5657033731497395e-21,8.157455935498238e-18)
    sum e = 3.1609364941869653e-09
    sum de = -4.74330394277149e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023168638562205733 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.964e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.142845823504228 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8393838464000303, dt = 0.0023168638562205733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 294.43 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.278745742988131e-21,-3.0959923130861104e-22,-3.1018445270119544e-17)
    sum a = (-1.1394541335832756e-20,1.5481053112887758e-21,1.2342379012338104e-17)
    sum e = 3.160935375957496e-09
    sum de = -4.905912638758287e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023168829611150315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.032e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.51275046390437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.841700710256251, dt = 0.0023168829611150315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.1%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.57 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.79 us    (0.5%)
   LB compute        : 333.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 5.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2524993533305278e-21,-3.0603287435899447e-22,-3.098500147394042e-17)
    sum a = (-1.1262842342289919e-20,1.530295037954564e-21,1.6488778539501603e-17)
    sum e = 3.1609342204776976e-09
    sum de = -5.06475436252879e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023169021957955426 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.997e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.831771765267046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.844017593217366, dt = 0.0023169021957955426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 289.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2265569535109288e-21,-3.025079447614109e-22,-3.094199522568478e-17)
    sum a = (-1.113223804259242e-20,1.5124653020173572e-21,2.0594816911797986e-17)
    sum e = 3.160933028622618e-09
    sum de = -5.21980546845719e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023169215662573743 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.465e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.072982998452254 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8463344954131613, dt = 0.0023169215662573743 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1.68 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 256.68 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.1841362847222228
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2009157156861813e-21,-2.990243148778037e-22,-3.0889522005515355e-17)
    sum a = (-1.1004798826150253e-20,1.4956818328364043e-21,2.4658680508811836e-17)
    sum e = 3.1609318012725747e-09
    sum de = -5.371044196357077e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023169410780263106 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1577e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.578905489224372 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.848651416979419, dt = 0.0023169410780263106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.9%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 338.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.175565915156756e-21,-2.955783976386475e-22,-3.082768146903679e-17)
    sum a = (-1.0878065422854248e-20,1.4780620284926738e-21,2.867859315305977e-17)
    sum e = 3.1609305393127247e-09
    sum de = -5.518450646343847e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023169607362933066 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1349e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.372598294909878 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 4) global walltime = 696.26s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.850968358057445, dt = 0.0023169607362933066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 300.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1505086676553213e-21,-2.921741388204201e-22,-3.0756577344470525e-17)
    sum a = (-1.075344297641388e-20,1.4615664623532655e-21,3.2652805489676666e-17)
    sum e = 3.160929243632633e-09
    sum de = -5.662006764781455e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002316980546058706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1419e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.435789031247154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.853285318793738, dt = 0.002316980546058706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 294.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1257375428646053e-21,-2.888067828051804e-22,-3.067631738239292e-17)
    sum a = (-1.0628851319903878e-20,1.4430164439557055e-21,3.6579598387996297e-17)
    sum e = 3.1609279151258478e-09
    sum de = -5.801696339717079e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023170005122812205 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1603e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60301311128983 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8556022993397967, dt = 0.0023170005122812205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 295.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.101254794256506e-21,-2.854848197243569e-22,-3.058701328270591e-17)
    sum a = (-1.0506921413674794e-20,1.4279282623438944e-21,4.045728452842687e-17)
    sum e = 3.1609265546894704e-09
    sum de = -5.937504986851827e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317020640042473 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.528424727792256 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8579192998520777, dt = 0.002317020640042473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.63 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 332.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0770512494961882e-21,-2.821937648591671e-22,-3.0488780619128645e-17)
    sum a = (-1.0385176983147385e-20,1.4110882065910156e-21,4.428421256280026e-17)
    sum e = 3.160925163223737e-09
    sum de = -6.069420129295512e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317040934593624 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1134e+04 | 9216 |      1 | 2.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.179350625105116 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.90s (niter = 3) global walltime = 697.43s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8602363204921204, dt = 0.002317040934593624 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.1%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 316.47 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.05312947674938e-21,-2.7894378964233857e-22,-3.038173875027781e-17)
    sum a = (-1.026477775320673e-20,1.3943560182000096e-21,4.8058761355897495e-17)
    sum e = 3.160923741631611e-09
    sum de = -6.19743097374416e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023170614015224312 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.371094697563038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.862553361426714, dt = 0.0023170614015224312 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 298.60 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0294848172270105e-21,-2.7573235011536136e-22,-3.026601075730703e-17)
    sum a = (-1.0147137241058951e-20,1.378046011387211e-21,5.1779345895451656e-17)
    sum e = 3.1609222908183504e-09
    sum de = -6.321528511031664e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317082046817453 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1354e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.378386413118356 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.8648704228282362, dt = 0.002317082046817453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.0%)
   patch tree reduce : 2.86 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 329.05 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.006109357369562e-21,-2.72558167697012e-22,-3.0141723353019264e-17)
    sum a = (-1.0030095232561799e-20,1.3627945454903455e-21,5.544441711499508e-17)
    sum e = 3.1609208116911178e-09
    sum de = -6.441705489589917e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023171028769133034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0005e+04 | 9216 |      1 | 3.071e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.15780200943959 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 698.33s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8671875048750537, dt = 0.0023171028769133034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 328.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9830042547221705e-21,-2.6941808664637065e-22,-3.00090067994071e-17)
    sum a = (-9.915423620125011e-21,1.3480977175650573e-21,5.905245840509752e-17)
    sum e = 3.1609193051585643e-09
    sum de = -6.557956388966224e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317123898700527 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1337e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.363649449684697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.869504607751967, dt = 0.002317123898700527 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 303.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9601618333961826e-21,-2.6631143796396766e-22,-2.9867994835213745e-17)
    sum a = (-9.801410821971145e-21,1.330788869236376e-21,6.260199496683263e-17)
    sum e = 3.160917772130428e-09
    sum de = -6.67027742458498e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317145119498683 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53182116560704 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 698.92s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8718217316506673, dt = 0.002317145119498683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 270.08 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9375825643320145e-21,-2.6324780990865062e-22,-2.971882456994946e-17)
    sum a = (-9.68851872446684e-21,1.3161074095933148e-21,6.60915826419603e-17)
    sum e = 3.16091621351714e-09
    sum de = -6.778666506260796e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317166546992525 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1554e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.560618477577442 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.874138876770166, dt = 0.002317166546992525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.4%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 298.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9152634480353333e-21,-2.602152419142417e-22,-2.9561636425291347e-17)
    sum a = (-9.575587515250936e-21,1.3004964687149223e-21,6.951981936179632e-17)
    sum e = 3.1609146302294336e-09
    sum de = -6.883123221600896e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023171881891194306 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.547854628590212 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 699.50s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8764560433171584, dt = 0.0023171881891194306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.4%)
   LB compute        : 309.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.893205857715577e-21,-2.5721987601205684e-22,-2.9396574023152507e-17)
    sum a = (-9.46572574162193e-21,1.286316381261644e-21,7.288533864042668e-17)
    sum e = 3.160913023177953e-09
    sum de = -6.983648829901126e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231721005392982 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1487e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.500673765652436 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 699.80s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.878773231506278, dt = 0.00231721005392982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.87 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.27 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8713991708055066e-21,-2.5425561418390307e-22,-2.9223784112953627e-17)
    sum a = (-9.356346796903819e-21,1.2711396188384633e-21,7.618681435302747e-17)
    sum e = 3.1609113932728735e-09
    sum de = -7.080246232776934e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317232149413135 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1715e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70704040988773 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 700.09s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.881090441560208, dt = 0.002317232149413135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 295.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.849845013590018e-21,-2.513277336032293e-22,-2.904341647096611e-17)
    sum a = (-9.249677053014543e-21,1.2560326678303447e-21,7.942295666965092e-17)
    sum e = 3.1609097414235196e-09
    sum de = -7.17291995797647e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317254483296592 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.480980441729123 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 700.38s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.883407673709621, dt = 0.002317254483296592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (1.9%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 336.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.828534735289783e-21,-2.4843459037989105e-22,-2.8855623822113906e-17)
    sum a = (-9.14250533560619e-21,1.242109281415381e-21,8.259252146027522e-17)
    sum e = 3.1609080685379912e-09
    sum de = -7.261676136581158e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317277062824318 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9712e+04 | 9216 |      1 | 3.102e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.894600682213643 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 700.69s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.885724928192918, dt = 0.002317277062824318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.7%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 308.73 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8074732147594876e-21,-2.455724786089309e-22,-2.866056172253334e-17)
    sum a = (-9.036506045270216e-21,1.2284108570754017e-21,8.569429715224828e-17)
    sum e = 3.160906375522798e-09
    sum de = -7.346522486348976e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023172998945204326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.614372725014984 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 700.98s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.888042205255742, dt = 0.0023172998945204326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.0%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 322.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7866556831772536e-21,-2.4274179660911214e-22,-2.8458388499876987e-17)
    sum a = (-8.933732149372033e-21,1.2130126701319986e-21,8.8727119878522e-17)
    sum e = 3.1609046632824927e-09
    sum de = -7.427468266296655e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023173229839472177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.456820801635672 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 701.28s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.8903595051502626, dt = 0.0023173229839472177 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 265.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7660724576560187e-21,-2.399485719776309e-22,-2.8249265125683334e-17)
    sum a = (-8.830001698116063e-21,1.200230057651672e-21,9.168986069140868e-17)
    sum e = 3.1609029327193196e-09
    sum de = -7.504524290224407e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317346335465455 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.574796680459922 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 701.57s (max_walltime = 701.84s)  [SPH][rank=0]
---------------- t = 3.89267682813421, dt = 0.002317346335465455 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 303.32 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7457304834665944e-21,-2.371821249301889e-22,-2.8033355149385686e-17)
    sum a = (-8.728481794409819e-21,1.185668873770188e-21,9.458144135005302e-17)
    sum e = 3.160901184732852e-09
    sum de = -7.577702868868983e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317369952005805 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.578441426642552 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 701.86s > 701.84s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 22):
   -> walltime = 701.860670249 >= 701.839110214
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000022.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (54.3%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000022.sham              [Shamrock Dump][rank=0]
              - took 1.53 ms, bandwidth = 2.28 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 701.860670249 -> 731.860670249

[Simulation] Evolve until next trigger(s) :
   -> t = 3.900000000000002 (current = 3.894994174469675)
   -> iter = None (current = 1711)
   -> walltime = 731.860670249 (current = 701.8650183870001)

Info: evolve_until (target_time = 3.90s, niter_max = -1, max_walltime = 731.86s)      [SPH][rank=0]
---------------- t = 3.894994174469675, dt = 0.002317369952005805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.34 us    (1.3%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.70 us    (0.5%)
   LB compute        : 323.72 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
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.1841362847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.725620924974536e-21,-2.3445137912747632e-22,-2.7810824562262127e-17)
    sum a = (-8.627791996358955e-21,1.1735606083540572e-21,9.740081445433443e-17)
    sum e = 3.1608994202196607e-09
    sum de = -7.647017809965399e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023173938348587334 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1260e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.296974905405275 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.38s (niter = 25) global walltime = 702.16s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 3.897311544421681, dt = 0.0023173938348587334 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 354.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.2%)
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.1843532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7057435709168526e-21,-2.3174582643637465e-22,-2.7581841750065264e-17)
    sum a = (-8.52864547995495e-21,1.1589222958758108e-21,1.0014698276219153e-16)
    sum e = 3.160897640072959e-09
    sum de = -7.712484390846648e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317417983491921 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1358e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38667464532696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.8996289382565394, dt = 0.00037106174346268617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 305.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.1843532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.702693767383473e-21,-2.313327082605232e-22,-2.754149905936895e-17)
    sum a = (-8.513710884336538e-21,1.156439462791076e-21,1.005643369566574e-16)
    sum e = 3.1608973462861556e-09
    sum de = -7.720741477656058e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023174219964171893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2099e+04 | 9216 |      1 | 2.871e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.65264837984713 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 1715                                                    [SPH][rank=0]
Info: time since start : 702.742235634 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 39):
   -> t = 3.900000000000002 >= 3.900000000000002
--------------------------------
tfinal = 11.929837334903324
11.325000000000093
11.350000000000094
11.375000000000094
11.400000000000095
11.425000000000095
11.450000000000095
11.475000000000096
11.500000000000096
11.525000000000096
11.550000000000097
11.575000000000097
11.600000000000097
11.625000000000098
11.650000000000098
11.675000000000098
11.700000000000099
11.7250000000001
11.7500000000001
11.7750000000001
11.8000000000001
11.8250000000001
11.850000000000101
11.875000000000101
11.900000000000102
11.925000000000102
tfinal = 11.929837334903324
11.325000000000093
11.350000000000094
11.375000000000094
11.400000000000095
11.425000000000095
11.450000000000095
11.475000000000096
11.500000000000096
11.525000000000096
11.550000000000097
11.575000000000097
11.600000000000097
11.625000000000098
11.650000000000098
11.675000000000098
11.700000000000099
11.7250000000001
11.7500000000001
11.7750000000001
11.8000000000001
11.8250000000001
11.850000000000101
11.875000000000101
11.900000000000102
11.925000000000102
tfinal = 11.929837334903324
11.325000000000093
11.350000000000094
11.375000000000094
11.400000000000095
11.425000000000095
11.450000000000095
11.475000000000096
11.500000000000096
11.525000000000096
11.550000000000097
11.575000000000097
11.600000000000097
11.625000000000098
11.650000000000098
11.675000000000098
11.700000000000099
11.7250000000001
11.7500000000001
11.7750000000001
11.8000000000001
11.8250000000001
11.850000000000101
11.875000000000101
11.900000000000102
11.925000000000102
tfinal = 11.929837334903324
11.325000000000093
11.350000000000094
11.375000000000094
11.400000000000095
11.425000000000095
11.450000000000095
11.475000000000096
11.500000000000096
11.525000000000096
11.550000000000097
11.575000000000097
11.600000000000097
11.625000000000098
11.650000000000098
11.675000000000098
11.700000000000099
11.7250000000001
11.7500000000001
11.7750000000001
11.8000000000001
11.8250000000001
11.850000000000101
11.875000000000101
11.900000000000102
11.925000000000102
tfinal = 11.929837334903324
11.325000000000093
11.350000000000094
11.375000000000094
11.400000000000095
11.425000000000095
11.450000000000095
11.475000000000096
11.500000000000096
11.525000000000096
11.550000000000097
11.575000000000097
11.600000000000097
11.625000000000098
11.650000000000098
11.675000000000098
11.700000000000099
11.7250000000001
11.7500000000001
11.7750000000001
11.8000000000001
11.8250000000001
11.850000000000101
11.875000000000101
11.900000000000102
11.925000000000102
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[1.09067757e-14 3.10866459e-14 4.60398079e-14 ... 4.83636651e-14
 8.94512129e-16 6.91464463e-22]
(9216, 3)
[[1.09067757e-14 3.10866459e-14 4.60398079e-14 9.48633691e-16
  0.00000000e+00]
 [5.88999713e-06 9.90104058e-14 5.58737874e-13 1.33590026e-13
  6.48828109e-16]
 [1.88293538e-14 9.73874651e-14 7.51202428e-14 1.56517584e-15
  0.00000000e+00]
 ...
 [4.25238641e-05 5.34163106e-05 6.07960112e-05 2.30547219e-05
  1.31555558e-12]
 [3.17902080e-05 3.38006985e-05 1.96159903e-05 2.13208191e-12
  4.25467469e-15]
 [1.67053415e-14 6.23745149e-14 4.83636651e-14 8.94512129e-16
  6.91464463e-22]]
compute original rho
0.000673545890830941 0.0
0.0011124513981378794 0.0
0.0019427147069630399 0.0
0.0037729003286271485 0.0
0.008908681857164955 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 3.900000000000002 -> 4.000000000000002

[Simulation] Evolve until next trigger(s) :
   -> t = 4.000000000000002 (current = 3.900000000000002)
   -> iter = None (current = 1714)
   -> walltime = 731.860670249 (current = 708.718138067)

Info: evolve_until (target_time = 4.00s, niter_max = -1, max_walltime = 731.86s)      [SPH][rank=0]
---------------- t = 3.900000000000002, dt = 0.0023174219964171893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (1.9%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 363.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 5.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (78.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6829667929631778e-21,-2.286532135388995e-22,-2.730837162070288e-17)
    sum a = (-8.414375723010917e-21,1.1434559920225815e-21,1.0324002204507912e-16)
    sum e = 3.160895556931702e-09
    sum de = -7.783662953483855e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023174463254004053 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1757e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.747670413063247 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.52s (niter = 19) global walltime = 709.01s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 3.902317421996419, dt = 0.0023174463254004053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 305.42 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (59.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.663582000768379e-21,-2.2601830631154093e-22,-2.706601806532958e-17)
    sum a = (-8.317581687950803e-21,1.1297345708258295e-21,1.0582476526189678e-16)
    sum e = 3.1608937458187077e-09
    sum de = -7.840861418411542e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317471038276009 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1618e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.622718145437716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9046348683218195, dt = 0.002317471038276009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 323.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1843532986111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6444184405363894e-21,-2.2341612504179636e-22,-2.6817777234831084e-17)
    sum a = (-8.22166907674717e-21,1.116700124058265e-21,1.0833352282790778e-16)
    sum e = 3.1608919220939843e-09
    sum de = -7.894283278150994e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023174960004506916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1598e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.604291892586023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9069523393600956, dt = 0.0023174960004506916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 306.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1845703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6254757821687864e-21,-2.208432609132887e-22,-2.656380774238191e-17)
    sum a = (-8.128426840746071e-21,1.105282788750752e-21,1.1076537866952403e-16)
    sum e = 3.160890086406733e-09
    sum de = -7.943935477030601e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023175212041573355 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1297e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.331950052680906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.909269835360546, dt = 0.0023175212041573355 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.6%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 263.88 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1845703125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6067460482870243e-21,-2.1829503313038583e-22,-2.6304288720641178e-17)
    sum a = (-8.034471514304003e-21,1.0911318324832658e-21,1.131195672845688e-16)
    sum e = 3.160888239629326e-09
    sum de = -7.989840569852938e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023175466381021156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1628e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.632318963923556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9115873565647035, dt = 0.0023175466381021156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 293.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1850043402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5882346745117952e-21,-2.1578264083223757e-22,-2.603940090677962e-17)
    sum a = (-7.942133266724766e-21,1.0786971481416446e-21,1.15395352133767e-16)
    sum e = 3.160886382627137e-09
    sum de = -8.032022342678101e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231757228902403 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.035e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.488993140576984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9139049032028055, dt = 0.00231757228902403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.56 us    (2.4%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1.79 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.19 us    (0.7%)
   LB compute        : 293.52 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 5.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5699352129205778e-21,-2.1329709213781303e-22,-2.5769326717586863e-17)
    sum a = (-7.850015957045661e-21,1.0663278078831e-21,1.1759205034347571e-16)
    sum e = 3.160884516259917e-09
    sum de = -8.070505877652924e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023175981418493497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1467e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48687545621456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9162224754918293, dt = 0.0023175981418493497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 266.65 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.185221354166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5518487902493212e-21,-2.1084009475628503e-22,-2.549425009683282e-17)
    sum a = (-7.760650067783638e-21,1.0547159840866468e-21,1.1970902382006414e-16)
    sum e = 3.1608826413814865e-09
    sum de = -8.105317528031425e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023176241799069777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1695e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694043986246527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.918540073633679, dt = 0.0023176241799069777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.3%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 272.33 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5339660823179158e-21,-2.0840913553832966e-22,-2.5214356421845434e-17)
    sum a = (-7.669877658576802e-21,1.0423232860637207e-21,1.2174567695865196e-16)
    sum e = 3.1608807588394615e-09
    sum de = -8.136484882967986e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023176503851910285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1491e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.509304030919363 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.920857697813586, dt = 0.0023176503851910285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 297.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5162951633337777e-21,-2.0600775313903691e-22,-2.4929832408326802e-17)
    sum a = (-7.581980612529477e-21,1.0295065436071561e-21,1.2370146045198299e-16)
    sum e = 3.1608788694749555e-09
    sum de = -8.164036744227213e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023176767386654026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1537e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55165998047848 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.923175348198777, dt = 0.0023176767386654026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 288.47 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4988244556448995e-21,-2.036365219296621e-22,-2.4640865999723986e-17)
    sum a = (-7.49387289546821e-21,1.0179638336177653e-21,1.2557587047509532e-16)
    sum e = 3.1608769741223115e-09
    sum de = -8.188003106094399e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023177032206028684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.747590356430045 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9254930249374422, dt = 0.0023177032206028684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 321.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4815580480704082e-21,-2.0129053004567728e-22,-2.4347646262079463e-17)
    sum a = (-7.407415087827328e-21,1.0074162383330662e-21,1.2736844763017272e-16)
    sum e = 3.160875073608822e-09
    sum de = -8.208415123204747e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317729810950774 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1479e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.499641087905527 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.927810728158045, dt = 0.002317729810950774 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 270.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.464489732559304e-21,-1.9896783650835777e-22,-2.405036328309143e-17)
    sum a = (-7.322912532985908e-21,9.949296625194163e-22,1.2907877934937062e-16)
    sum e = 3.1608731687544735e-09
    sum de = -8.225305093170615e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231775648971447 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1643e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.648646647804927 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.930128457968996, dt = 0.00231775648971447 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.65 us    (2.6%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 272.06 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4476148877336702e-21,-1.9667629986081693e-22,-2.3749208061234834e-17)
    sum a = (-7.237092471233666e-21,9.830997173876228e-22,1.3070650078081792e-16)
    sum e = 3.1608712603716732e-09
    sum de = -8.238706422941069e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023177832373476046 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1352e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38559759169021 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9324462144587105, dt = 0.0023177832373476046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 301.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4309403862426652e-21,-1.944113273336687e-22,-2.34443723937678e-17)
    sum a = (-7.154269890420483e-21,9.708241481879786e-22,1.3225128908089833e-16)
    sum e = 3.160869349265007e-09
    sum de = -8.248653602933544e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317810035140251 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1594e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60478924515175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.934763997696058, dt = 0.002317810035140251 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 324.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4144542081023948e-21,-1.9217541887230005e-22,-2.3136048786479404e-17)
    sum a = (-7.072915673078956e-21,9.606982778453358e-22,1.3371286886198572e-16)
    sum e = 3.160867436230978e-09
    sum de = -8.255182176884221e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023178368655936287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.462415395308515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9370818077311984, dt = 0.0023178368655936287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 305.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3981545751826894e-21,-1.8996046285814028e-22,-2.2824430337340984e-17)
    sum a = (-6.991052853154324e-21,9.498391620772853e-22,1.350910125278461e-16)
    sum e = 3.160865522057773e-09
    sum de = -8.258328733063181e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317863712771575 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1596e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60739663281102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9393996445967923, dt = 0.002317863712771575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 307.66 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3820451383721028e-21,-1.87771382158998e-22,-2.2509710625385116e-17)
    sum a = (-6.909863637572438e-21,9.386908492818737e-22,1.3638553350262362e-16)
    sum e = 3.1608636075250164e-09
    sum de = -8.258130849889022e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317890562620735 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.617594122861227 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.941717508309564, dt = 0.002317890562620735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.4%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 277.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (60.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3661228761697403e-21,-1.8560852007723268e-22,-2.219208362289613e-17)
    sum a = (-6.8300221782268e-21,9.281110605983492e-22,1.375962949566995e-16)
    sum e = 3.160861693403548e-09
    sum de = -8.254627081207222e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317917403247222 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1677e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.680862666390773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9440353988721846, dt = 0.002317917403247222 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 274.50 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3503840100489916e-21,-1.8346952631207561e-22,-2.1871743569994716e-17)
    sum a = (-6.7516047869956585e-21,9.173745466854267e-22,1.3872320862790425e-16)
    sum e = 3.1608597804551955e-09
    sum de = -8.247856926208417e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023179442251433317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1685e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.688776497593793 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.10s (niter = 14) global walltime = 714.58s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 3.946353316275432, dt = 0.0023179442251433317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 341.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (62.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3348250299632964e-21,-1.8135547918504057e-22,-2.1548884863230794e-17)
    sum a = (-6.6737091278748404e-21,9.05966733617077e-22,1.397662245160779e-16)
    sum e = 3.1608578694325545e-09
    sum de = -8.237860818495612e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002317971021359875 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1593e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.605789819523878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9486712605005754, dt = 0.002317971021359875 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 297.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.319445889698876e-21,-1.7926882802642302e-22,-2.122370197872562e-17)
    sum a = (-6.597192700287486e-21,8.957493489884157e-22,1.4072534120336525e-16)
    sum e = 3.16085596107877e-09
    sum de = -8.224680079669788e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023179977876160115 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55777565197204 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9509892315219353, dt = 0.0023179977876160115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 338.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3042422671670503e-21,-1.772042186398088e-22,-2.0896389346767384e-17)
    sum a = (-6.521270230070232e-21,8.862402103312927e-22,1.4160060370133908e-16)
    sum e = 3.1608540561273374e-09
    sum de = -8.208356895596362e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318024522344145 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.382750681145648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9533072293095515, dt = 0.002318024522344145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 318.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.289213759647744e-21,-1.7516092040735599e-22,-2.0567141246746378e-17)
    sum a = (-6.44587779668945e-21,8.76196277019101e-22,1.4239210180510862e-16)
    sum e = 3.160852155301899e-09
    sum de = -8.18893429924318e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023180512266689404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0693e+04 | 9216 |      1 | 3.003e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.791533864225638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9556252538318954, dt = 0.0023180512266689404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 303.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2743593768456894e-21,-1.7314147508691839e-22,-2.0236151704463584e-17)
    sum a = (-6.3728632641566705e-21,8.661328954081794e-22,1.4309997069781667e-16)
    sum e = 3.1608502593160464e-09
    sum de = -8.166456126995695e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023180779043189353 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1604e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.616921165331433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9579433050585644, dt = 0.0023180779043189353 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.8%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 306.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2596711809941517e-21,-1.711453831295498e-22,-1.9903614386130578e-17)
    sum a = (-6.297513274005816e-21,8.557121525459635e-22,1.437243876434287e-16)
    sum e = 3.160848368873138e-09
    sum de = -8.140967001928699e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318104561474829 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1557e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.574470055773528 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.960261382962883, dt = 0.002318104561474829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 266.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2451602105843817e-21,-1.6917378227448007e-22,-1.9569722504020775e-17)
    sum a = (-6.226204457401512e-21,8.450894840773465e-22,1.4426557596244778e-16)
    sum e = 3.1608464846661204e-09
    sum de = -8.112512301811183e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023181312065566517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1694e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.698888416367204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.962579487524358, dt = 0.0023181312065566517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.59 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 326.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.230809690014544e-21,-1.6722719407721686e-22,-1.9234668704815866e-17)
    sum a = (-6.153490240711293e-21,8.359437705795405e-22,1.4472380335270755e-16)
    sum e = 3.160844607377343e-09
    sum de = -8.081138136509973e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318157849956557 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1340e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37869352065602 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9648976187309146, dt = 0.002318157849956557 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.78 us    (0.6%)
   LB compute        : 297.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
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.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2166292053428307e-21,-1.652998242101159e-22,-1.8898644968295286e-17)
    sum a = (-6.0823878602332516e-21,8.272389607421421e-22,1.4509938286213751e-16)
    sum e = 3.160842737678402e-09
    sum de = -8.046891308739531e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023181845037436623 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1553e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.572062552655193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.967215776580871, dt = 0.0023181845037436623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2026115054072254e-21,-1.6339222723852714e-22,-1.856184250117988e-17)
    sum a = (-6.012169880274217e-21,8.1651501477649525e-22,1.4539267040530396e-16)
    sum e = 3.1608408762299773e-09
    sum de = -8.009819305635587e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318211181255555 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1614e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.627794523560837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9695339610846148, dt = 0.002318211181255555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 318.03 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.188755430461937e-21,-1.6151186998876918e-22,-1.8224451639708852e-17)
    sum a = (-5.9439923756559574e-21,8.072872993288815e-22,1.4560405952415688e-16)
    sum e = 3.160839023681667e-09
    sum de = -7.969970255375636e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023182378967530736 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9443e+04 | 9216 |      1 | 3.130e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.662315061479834 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.97185217226587, dt = 0.0023182378967530736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 297.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.66 us    (1.5%)
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.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1750549132979587e-21,-1.5965105456562762e-22,-1.7886661768639104e-17)
    sum a = (-5.874636706029491e-21,7.97933422464816e-22,1.4573399637429684e-16)
    sum e = 3.1608371806718546e-09
    sum de = -7.927392899221677e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023182646650073808 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1596e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.611850019034264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9741704101626234, dt = 0.0023182646650073808 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 276.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1615162213840068e-21,-1.5781205644756204e-22,-1.7548661182197886e-17)
    sum a = (-5.808679928371064e-21,7.885661821162767e-22,1.4578295954865006e-16)
    sum e = 3.160835347827565e-09
    sum de = -7.882136572971033e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318291500885162 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.622489327274895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.976488674827631, dt = 0.002318291500885162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 310.15 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1481265094901312e-21,-1.5599480961488795e-22,-1.7210637031405692e-17)
    sum a = (-5.740086248865561e-21,7.80573985452547e-22,1.4575147706811e-16)
    sum e = 3.1608335257643224e-09
    sum de = -7.834251177766687e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318318418950781 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1169e+04 | 9216 |      1 | 2.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.226069419406713 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.23s (niter = 11) global walltime = 718.70s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 3.978806966328516, dt = 0.002318318418950781 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 269.12 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1348987746915563e-21,-1.5419445281816891e-22,-1.6872775190259852e-17)
    sum a = (-5.67384688247511e-21,7.708948450074701e-22,1.456401163712907e-16)
    sum e = 3.1608317150860293e-09
    sum de = -7.783787146369637e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023183454330259435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1515e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.540018597989924 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9811252847474665, dt = 0.0023183454330259435 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 265.45 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.121821617589423e-21,-1.5241853870931339e-22,-1.6535260176312862e-17)
    sum a = (-5.610222114831817e-21,7.622401628161958e-22,1.454494825836964e-16)
    sum e = 3.1608299163848508e-09
    sum de = -7.730795417882058e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023183725558458064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.528721711163744 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9834436301804925, dt = 0.0023183725558458064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.1%)
   patch tree reduce : 2.50 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 311.33 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1088887267018915e-21,-1.506614005987339e-22,-1.6198275065129564e-17)
    sum a = (-5.5444512290741606e-21,7.530036084331535e-22,1.4518022632108969e-16)
    sum e = 3.1608281302410887e-09
    sum de = -7.67532741416217e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023183997987098874 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.562079445749607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9857620027363385, dt = 0.0023183997987098874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.1%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1.61 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 310.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0961106277673294e-21,-1.489263284673754e-22,-1.5862001375744115e-17)
    sum a = (-5.480350781351477e-21,7.4455415613349e-22,1.4483303146509323e-16)
    sum e = 3.160826357223085e-09
    sum de = -7.617435013336669e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318427171181715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.512244314805226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9880804025350485, dt = 0.002318427171181715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 270.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0834791915619171e-21,-1.4720989589361158e-22,-1.5526619008614663e-17)
    sum a = (-5.4177391787447845e-21,7.3621824888856735e-22,1.4440863071070652e-16)
    sum e = 3.1608245978871157e-09
    sum de = -7.557170519334154e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023184502550137806 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.933303968252766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9903988297062303, dt = 0.0023184502550137806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.2%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 302.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0709910312758387e-21,-1.4551266844607313e-22,-1.5192306753028663e-17)
    sum a = (-5.355192888586737e-21,7.2796077632983255e-22,1.4390778805936658e-16)
    sum e = 3.1608228527806403e-09
    sum de = -7.494586754798119e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318457069754208 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1534e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.558548996844337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9927172799612443, dt = 0.002318457069754208 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.3%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 305.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0586477291808668e-21,-1.438344348617696e-22,-1.485924331378156e-17)
    sum a = (-5.292546355515133e-21,7.196935614663195e-22,1.4333131429678337e-16)
    sum e = 3.1608211224477175e-09
    sum de = -7.429737270871174e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023184640860155607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1455e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.487241158675804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9950357370309986, dt = 0.0023184640860155607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 323.09 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0464498046318524e-21,-1.4217551203518663e-22,-1.4527603073968547e-17)
    sum a = (-5.2322511774640926e-21,7.111881651863262e-22,1.4268005138957673e-16)
    sum e = 3.1608194074073276e-09
    sum de = -7.362675577505704e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318471318458098 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51234726862051 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 3.9973542011170142, dt = 0.002318471318458098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.75 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 307.07 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0343888555236134e-21,-1.4053646113364264e-22,-1.4197558432012065e-17)
    sum a = (-5.172434651478574e-21,7.018874517735443e-22,1.4195487927690628e-16)
    sum e = 3.160817708166095e-09
    sum de = -7.293455477944515e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318478781232634 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.319551580886788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.9996726724354725, dt = 0.00032732756452924505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 298.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0327651211888768e-21,-1.4031760367881987e-22,-1.4151933332492678e-17)
    sum a = (-5.162916276667587e-21,7.02101789080634e-22,1.4185076288273028e-16)
    sum e = 3.160817477436464e-09
    sum de = -7.28247162151633e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023184799748463872 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2154e+04 | 9216 |      1 | 2.866e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.111291439846884 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1759                                                    [SPH][rank=0]
Info: time since start : 721.6352985320001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 40):
   -> t = 4.000000000000002 >= 4.000000000000002
--------------------------------
tfinal = 12.55772351042455
11.950000000000102
11.975000000000103
12.000000000000103
12.025000000000103
12.050000000000104
12.075000000000104
12.100000000000104
12.125000000000105
12.150000000000105
12.175000000000106
12.200000000000106
12.225000000000106
12.250000000000107
12.275000000000107
12.300000000000107
12.325000000000108
12.350000000000108
12.375000000000108
12.400000000000109
12.425000000000109
12.45000000000011
12.47500000000011
12.50000000000011
12.52500000000011
12.55000000000011
tfinal = 12.55772351042455
11.950000000000102
11.975000000000103
12.000000000000103
12.025000000000103
12.050000000000104
12.075000000000104
12.100000000000104
12.125000000000105
12.150000000000105
12.175000000000106
12.200000000000106
12.225000000000106
12.250000000000107
12.275000000000107
12.300000000000107
12.325000000000108
12.350000000000108
12.375000000000108
12.400000000000109
12.425000000000109
12.45000000000011
12.47500000000011
12.50000000000011
12.52500000000011
12.55000000000011
tfinal = 12.55772351042455
11.950000000000102
11.975000000000103
12.000000000000103
12.025000000000103
12.050000000000104
12.075000000000104
12.100000000000104
12.125000000000105
12.150000000000105
12.175000000000106
12.200000000000106
12.225000000000106
12.250000000000107
12.275000000000107
12.300000000000107
12.325000000000108
12.350000000000108
12.375000000000108
12.400000000000109
12.425000000000109
12.45000000000011
12.47500000000011
12.50000000000011
12.52500000000011
12.55000000000011
tfinal = 12.55772351042455
11.950000000000102
11.975000000000103
12.000000000000103
12.025000000000103
12.050000000000104
12.075000000000104
12.100000000000104
12.125000000000105
12.150000000000105
12.175000000000106
12.200000000000106
12.225000000000106
12.250000000000107
12.275000000000107
12.300000000000107
12.325000000000108
12.350000000000108
12.375000000000108
12.400000000000109
12.425000000000109
12.45000000000011
12.47500000000011
12.50000000000011
12.52500000000011
12.55000000000011
tfinal = 12.55772351042455
11.950000000000102
11.975000000000103
12.000000000000103
12.025000000000103
12.050000000000104
12.075000000000104
12.100000000000104
12.125000000000105
12.150000000000105
12.175000000000106
12.200000000000106
12.225000000000106
12.250000000000107
12.275000000000107
12.300000000000107
12.325000000000108
12.350000000000108
12.375000000000108
12.400000000000109
12.425000000000109
12.45000000000011
12.47500000000011
12.50000000000011
12.52500000000011
12.55000000000011
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[8.77860461e-15 2.50238272e-14 3.55947772e-14 ... 3.67751717e-14
 3.82323901e-16 0.00000000e+00]
(9216, 3)
[[8.77860461e-15 2.50238272e-14 3.55947772e-14 4.41400701e-16
  0.00000000e+00]
 [5.63856973e-06 7.75308486e-14 4.07938944e-13 5.00003143e-14
  9.40791905e-17]
 [1.43985276e-14 7.38993372e-14 4.81512115e-14 5.40692561e-16
  0.00000000e+00]
 ...
 [4.25431571e-05 5.33760861e-05 5.98747856e-05 1.85519578e-05
  4.80637143e-13]
 [3.16507600e-05 3.31990656e-05 1.77451160e-05 1.55009424e-12
  1.12959904e-15]
 [1.15289286e-14 4.48292999e-14 3.67751717e-14 3.82323901e-16
  0.00000000e+00]]
compute original rho
0.0006745076891847607 0.0
0.0011164064613964056 0.0
0.0019581700441610407 0.0
0.0038327219174783367 0.0
0.009179569253328072 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.000000000000002 -> 4.100000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.100000000000001 (current = 4.000000000000002)
   -> iter = None (current = 1758)
   -> walltime = 731.860670249 (current = 727.807410483)

Info: evolve_until (target_time = 4.10s, niter_max = -1, max_walltime = 731.86s)      [SPH][rank=0]
---------------- t = 4.000000000000002, dt = 0.0023184799748463872 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.0%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 343.33 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0207965292179617e-21,-1.3868972550855192e-22,-1.3823072219352181e-17)
    sum a = (-5.104067477533262e-21,6.932165342415197e-22,1.4103814015851818e-16)
    sum e = 3.1608157892087185e-09
    sum de = -7.2119129890183e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023184875943813537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1731e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.737475227234356 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.87s (niter = 3) global walltime = 728.10s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.002318479974848, dt = 0.0023184875943813537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 319.12 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0090311040235165e-21,-1.370927225440754e-22,-1.3497019065888786e-17)
    sum a = (-5.044875149096795e-21,6.848760408291794e-22,1.4015786349692313e-16)
    sum e = 3.1608141253150487e-09
    sum de = -7.138244568688714e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023184955942328793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1703e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71205460378024 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.00463696756923, dt = 0.0023184955942328793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 338.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.1854383680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.97403193430603e-22,-1.3551454839362254e-22,-1.317308413207021e-17)
    sum a = (-4.987396533704482e-21,6.777678730486489e-22,1.3920664785926889e-16)
    sum e = 3.160812478856132e-09
    sum de = -7.062597493884386e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318503861184706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1728e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.734407177108707 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.006955463163463, dt = 0.002318503861184706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 289.27 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.83 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.859065585790352e-22,-1.3395142453058288e-22,-1.2851435676291593e-17)
    sum a = (-4.9289594459765644e-21,6.70347926207669e-22,1.3818553911932298e-16)
    sum e = 3.1608108501595204e-09
    sum de = -6.98501757524822e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185124046060253 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.708646072722647 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.58s (niter = 2) global walltime = 728.97s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.009273967024647, dt = 0.0023185124046060253 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 288.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.745464546357e-22,-1.3240578708131503e-22,-1.2532234511901653e-17)
    sum a = (-4.872588916281897e-21,6.622352150111698e-22,1.3709559511264259e-16)
    sum e = 3.1608092396679733e-09
    sum de = -6.905559892440449e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185212312195388 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70894668671491 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.011592479429253, dt = 0.0023185212312195388 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 326.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.633145895282226e-22,-1.3087982789934492e-22,-1.2215638988332862e-17)
    sum a = (-4.816245287614324e-21,6.546156609550436e-22,1.3593790538582196e-16)
    sum e = 3.160807647810406e-09
    sum de = -6.824279634426426e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185303456584663 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1635e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65050516121543 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.29s (niter = 1) global walltime = 729.55s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.013911000660473, dt = 0.0023185303456584663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 285.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.522133289619648e-22,-1.293707829605475e-22,-1.19018048936817e-17)
    sum a = (-4.761318662920621e-21,6.466991052445187e-22,1.3471358470967103e-16)
    sum e = 3.1608060750029385e-09
    sum de = -6.741232132439733e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185397503742316 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.768354822583245 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.29s (niter = 1) global walltime = 729.84s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.016229531006132, dt = 0.0023185397503742316 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 299.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.412376774474648e-22,-1.2788068787186198e-22,-1.1590885404895706e-17)
    sum a = (-4.706349374725062e-21,6.390842561912423e-22,1.334237839786031e-16)
    sum e = 3.160804521648854e-09
    sum de = -6.656472822262942e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185494456080145 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1527e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.552940309245948 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.29s (niter = 1) global walltime = 730.14s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.0185480707565056, dt = 0.0023185494456080145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.5%)
   LB compute        : 299.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.30389439522766e-22,-1.2640778210836798e-22,-1.1283030991654315e-17)
    sum a = (-4.652464999902433e-21,6.323215716204339e-22,1.3206968168987493e-16)
    sum e = 3.1608029881385793e-09
    sum de = -6.570057224151312e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231855942942212 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.043e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.430529700635972 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.29s (niter = 1) global walltime = 730.44s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.0208666202021135, dt = 0.00231855942942212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 320.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.196649400920973e-22,-1.2494954371811702e-22,-1.0978389362286632e-17)
    sum a = (-4.598991033147606e-21,6.244952780225777e-22,1.306524822041262e-16)
    sum e = 3.16080147484968e-09
    sum de = -6.482040919281791e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185696977898965 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.985e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.961349157162037 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 730.74s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.023185179631535, dt = 0.0023185696977898965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 271.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.090638292511307e-22,-1.2351062708886737e-22,-1.0677105406839363e-17)
    sum a = (-4.544690634320219e-21,6.173672592232416e-22,1.2917342075300357e-16)
    sum e = 3.1607999821468385e-09
    sum de = -6.392479542483414e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185802447411156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1210e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.26666484622852 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 731.04s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.025503749329325, dt = 0.0023185802447411156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 317.95 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.985894960103378e-22,-1.2208746275634298e-22,-1.037932111883028e-17)
    sum a = (-4.493615749178679e-21,6.101724174998958e-22,1.2763375611889364e-16)
    sum e = 3.1607985103818475e-09
    sum de = -6.301428718108669e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023185910625584537 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1552e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.576100251826738 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 731.33s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.027822329574066, dt = 0.0023185910625584537 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 321.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.882298191556418e-22,-1.206810784269661e-22,-1.0085175550544093e-17)
    sum a = (-4.440445250293726e-21,6.03791825154201e-22,1.2603477617182223e-16)
    sum e = 3.1607970598936202e-09
    sum de = -6.208944074357371e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318602142017462 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1677e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69021470643917 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 731.62s (max_walltime = 731.86s)  [SPH][rank=0]
---------------- t = 4.030140920636625, dt = 0.002318602142017462 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.72 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 285.77 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666674
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.779959560137257e-22,-1.1928858463921113e-22,-9.794804738829623e-18)
    sum a = (-4.3902183532019034e-21,5.9600070244294205e-22,1.243777883674568e-16)
    sum e = 3.160795631008189e-09
    sum de = -6.115081214444008e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186134726639225 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8173e+04 | 9216 |      1 | 3.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.516705225958415 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 731.95s > 731.86s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 23):
   -> walltime = 731.9484350780001 >= 731.860670249
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000023.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (54.0%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000023.sham              [Shamrock Dump][rank=0]
              - took 1.47 ms, bandwidth = 2.37 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 731.9484350780001 -> 761.9484350780001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.100000000000001 (current = 4.032459522778643)
   -> iter = None (current = 1772)
   -> walltime = 761.9484350780001 (current = 731.952607958)

Info: evolve_until (target_time = 4.10s, niter_max = -1, max_walltime = 761.95s)      [SPH][rank=0]
---------------- t = 4.032459522778643, dt = 0.0023186134726639225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.94 us    (1.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 270.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.678748963054278e-22,-1.1791564148069716e-22,-9.508341670753067e-18)
    sum a = (-4.339059842714022e-21,5.905295576593128e-22,1.2266412935489842e-16)
    sum e = 3.1607942240387217e-09
    sum de = -6.019895676906316e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186250431189446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1632e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.649486617271485 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.29s (niter = 25) global walltime = 732.24s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.034778136251306, dt = 0.0023186250431189446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 293.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.578735522917167e-22,-1.1655286095228616e-22,-9.225916205237032e-18)
    sum a = (-4.288623909420695e-21,5.828741009984194e-22,1.208951533876258e-16)
    sum e = 3.160792839285525e-09
    sum de = -5.92344292563091e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186368414024857 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1819e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.818732982361457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.037096761294426, dt = 0.0023186368414024857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.2%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 290.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.479883413043795e-22,-1.1521014380599922e-22,-8.947655044531222e-18)
    sum a = (-4.239673952688067e-21,5.751893481025225e-22,1.1907223561760048e-16)
    sum e = 3.160791477036082e-09
    sum de = -5.82577832932467e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318648855265283 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1637e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.654264760130292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.039415398135828, dt = 0.002318648855265283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.8%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 312.71 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.382147586002761e-22,-1.1388552045458164e-22,-8.67368168380422e-18)
    sum a = (-4.190819287117576e-21,5.692947387581502e-22,1.1719677830399984e-16)
    sum e = 3.1607901375650623e-09
    sum de = -5.7269571257656e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318661072518892 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9000e+04 | 9216 |      1 | 3.178e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.265835414878236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.041734046991094, dt = 0.002318661072518892 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 317.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.285542456091851e-22,-1.1257232070924128e-22,-8.404116339570436e-18)
    sum a = (-4.142363077851334e-21,5.633062043089468e-22,1.1527019817999412e-16)
    sum e = 3.1607888211343565e-09
    sum de = -5.62703440990428e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186734813537735 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1445e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48047260429841 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.044052708063613, dt = 0.0023186734813537735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.82 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 302.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.1900569760171885e-22,-1.112731193376742e-22,-8.139075930969133e-18)
    sum a = (-4.0956949886332856e-21,5.566907161264045e-22,1.132939271862734e-16)
    sum e = 3.1607875279931198e-09
    sum de = -5.526065117291356e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186860706355533 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4765e+04 | 9216 |      1 | 3.721e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.43009867498296 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.046371381544967, dt = 0.0023186860706355533 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.2%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.4%)
   LB compute        : 322.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.095631133885551e-22,-1.0998996295010037e-22,-7.878674043781495e-18)
    sum a = (-4.049086933315023e-21,5.501202896795279e-22,1.112694197019196e-16)
    sum e = 3.1607862583778054e-09
    sum de = -5.424103995364849e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318698830170646 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1514e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.543682843601044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.048690067615603, dt = 0.002318698830170646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 267.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.00228515372696e-22,-1.0872203290243182e-22,-7.623020869251285e-18)
    sum a = (-4.001379603210563e-21,5.435558776259106e-22,1.0919814617558445e-16)
    sum e = 3.1607850125122043e-09
    sum de = -5.321205573703105e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318711750933138 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.570187566622504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.051008766445773, dt = 0.002318711750933138 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.78 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 305.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.910057943142158e-22,-1.0746931158941932e-22,-7.372223174284663e-18)
    sum a = (-3.954756386746834e-21,5.375086758843912e-22,1.0708158922018732e-16)
    sum e = 3.160783790607502e-09
    sum de = -5.217424163501137e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318724825246142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8523e+04 | 9216 |      1 | 3.231e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.83494328675808 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.053327478196707, dt = 0.002318724825246142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 327.62 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.818898424901891e-22,-1.0623002308154944e-22,-7.126384277672094e-18)
    sum a = (-3.909181160428207e-21,5.306434781481243e-22,1.0492124743040234e-16)
    sum e = 3.16078259286233e-09
    sum de = -5.112813825533125e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318738046912511 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1630e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.648785665902672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0556462030219524, dt = 0.002318738046912511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 311.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.728783250044403e-22,-1.0500746616239176e-22,-6.885604008258277e-18)
    sum a = (-3.8643439321270254e-21,5.249307233257324e-22,1.0271863322851091e-16)
    sum e = 3.1607814194628277e-09
    sum de = -5.007428355548881e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023187514112907016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1683e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.696808614419112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.057964941068865, dt = 0.0023187514112907016 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 285.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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.185655381944445
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.639697784206291e-22,-1.0379691382253503e-22,-6.649978675308105e-18)
    sum a = (-3.818768956408117e-21,5.180074018592187e-22,1.0047526380495609e-16)
    sum e = 3.160780270582701e-09
    sum de = -4.90132125729665e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023187649153145916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1380e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.422941836010008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.060283692480155, dt = 0.0023187649153145916 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.3%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 292.87 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.551677854069687e-22,-1.0260386770235548e-22,-6.419601066704335e-18)
    sum a = (-3.775259191680198e-21,5.132368381617553e-22,9.819268056493366e-17)
    sum e = 3.160779146383284e-09
    sum de = -4.794545714083829e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231877855745628 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0995e+04 | 9216 |      1 | 2.973e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.07470140853622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.06260245739547, dt = 0.00231877855745628 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 273.68 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.464643113678537e-22,-1.0141919067751626e-22,-6.194560371589017e-18)
    sum a = (-3.732788676916397e-21,5.076015772450468e-22,9.587242035996247e-17)
    sum e = 3.1607780470136345e-09
    sum de = -4.687154590974312e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231879233763378 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.937325454208572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.0649212359529265, dt = 0.00231879233763378 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 281.97 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.378580337089376e-22,-1.0024873649337768e-22,-5.974942222598489e-18)
    sum a = (-3.689187076606662e-21,5.015236015279189e-22,9.351603981293401e-17)
    sum e = 3.160776972610593e-09
    sum de = -4.579200409393749e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188062570667902 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1848e+04 | 9216 |      1 | 2.894e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.847522103335418 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.06724002829056, dt = 0.0023188062570667902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 320.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.293540139393663e-22,-9.909292987657679e-23,-5.7608286230073546e-18)
    sum a = (-3.646934941755299e-21,4.958295753896957e-22,9.112509600370604e-17)
    sum e = 3.160775923298863e-09
    sum de = -4.4707353227917333e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318820318085421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.44981955444197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.069558834547627, dt = 0.002318820318085421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.75 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 312.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.209463785078745e-22,-9.794970441098826e-23,-5.552297966579498e-18)
    sum a = (-3.604494495106646e-21,4.898826597496105e-22,8.87011534591039e-17)
    sum e = 3.1607748991911095e-09
    sum de = -4.361811103351173e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188345238981606 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1526e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55587162926763 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.0718776548657125, dt = 0.0023188345238981606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 325.76 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.126374226988269e-22,-9.682071499003729e-23,-5.349425013271748e-18)
    sum a = (-3.5643258555354396e-21,4.838502090062678e-22,8.624578870023757e-17)
    sum e = 3.1607739003880354e-09
    sum de = -4.252479110911804e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318848878326814 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1431e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.470102235380633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.07419648938961, dt = 0.002318848878326814 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 298.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.044189006536278e-22,-9.570575255138956e-23,-5.152280855231529e-18)
    sum a = (-3.521923459607039e-21,4.7852279897878e-22,8.376057021635464e-17)
    sum e = 3.1607729269784925e-09
    sum de = -4.1427903057513323e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188633855169764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.096e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.965767156029912 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.076515338267937, dt = 0.0023188633855169764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 297.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.963011334496229e-22,-9.460220491619445e-23,-4.960932958765584e-18)
    sum a = (-3.481216326490399e-21,4.722821100468687e-22,8.124708064940411e-17)
    sum e = 3.1607719790395637e-09
    sum de = -4.0327951927209657e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188780496333893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.054e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.338772614207656 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.078834201653454, dt = 0.0023188780496333893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 309.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.882758686262478e-22,-9.351436996591385e-23,-4.775445106335073e-18)
    sum a = (-3.440569395348657e-21,4.680974347386479e-22,7.870689810584422e-17)
    sum e = 3.1607710566366764e-09
    sum de = -3.9225438381775333e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188928745501943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5749956463155 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.081153079703087, dt = 0.0023188928745501943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 272.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.803446180342779e-22,-9.243374656583843e-23,-4.595877427890721e-18)
    sum a = (-3.4012125684785794e-21,4.620995100896503e-22,7.614160598890135e-17)
    sum e = 3.1607701598237087e-09
    sum de = -3.8120858427597697e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189078635459546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694694571764728 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.083471972577637, dt = 0.0023189078635459546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.725031850224344e-22,-9.136910213007175e-23,-4.422286377741719e-18)
    sum a = (-3.3624756195446113e-21,4.567771538690121e-22,7.355278444145934e-17)
    sum e = 3.1607692886430966e-09
    sum de = -3.7014703174204427e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189230190136818 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8269e+04 | 9216 |      1 | 3.260e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.606608502285884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.085790880441183, dt = 0.0023189230190136818 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.3%)
   patch tree reduce : 2.01 us    (0.4%)
   gen split merge   : 1.25 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.2%)
   LB compute        : 446.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.647507267394114e-22,-9.031602434303206e-23,-4.254724752144466e-18)
    sum a = (-3.324332728798304e-21,4.523934743254302e-22,7.094201359883179e-17)
    sum e = 3.160768443125939e-09
    sum de = -3.5907458693071776e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318938342195023 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8952e+04 | 9216 |      1 | 3.183e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.225184689037846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.088109803460197, dt = 0.002318938342195023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 302.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.570860394262948e-22,-8.927204186786236e-23,-4.093241685041003e-18)
    sum a = (-3.2852544092683364e-21,4.464104030051204e-22,6.831087366548572e-17)
    sum e = 3.1607676232921414e-09
    sum de = -3.479960605998921e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318953832947643 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9084e+04 | 9216 |      1 | 3.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.345583772429915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.090428741802392, dt = 0.002318953832947643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 297.71 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.495131172739975e-22,-8.824378748220024e-23,-3.9378826483461935e-18)
    sum a = (-3.2470261003286292e-21,4.416751515864118e-22,6.566093590418206e-17)
    sum e = 3.1607668291505076e-09
    sum de = -3.369162100782213e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318969489553395 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8789e+04 | 9216 |      1 | 3.201e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.077995985161657 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.46s (niter = 18) global walltime = 739.85s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.09274769563534, dt = 0.002318969489553395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.6%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.420276447958087e-22,-8.722498931601679e-23,-3.788689482914263e-18)
    sum a = (-3.209789005636899e-21,4.356823511652607e-22,6.299376962033897e-17)
    sum e = 3.160766060698881e-09
    sum de = -3.258397373682375e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318985308574421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.105e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.8888509624865 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.095066665124893, dt = 0.002318985308574421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 292.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.346273091021139e-22,-8.622171017700663e-23,-3.645700395352241e-18)
    sum a = (-3.1728684248548668e-21,4.312972246902598e-22,6.031094193394257e-17)
    sum e = 3.16076531792427e-09
    sum de = -3.1477129006535306e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190012847619525 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1556e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.585545718069856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.097385650433467, dt = 0.0023190012847619525 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 305.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.273122730414684e-22,-8.522654045591104e-23,-3.508949962493903e-18)
    sum a = (-3.1361565300261593e-21,4.260576648562997e-22,5.761401104350574e-17)
    sum e = 3.1607646008029814e-09
    sum de = -3.037154578348581e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319017411020611 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.56234639272955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.099704651718229, dt = 0.00029534828177268935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 295.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.264285269425847e-22,-8.510677414623271e-23,-3.4950608564216104e-18)
    sum a = (-3.132110343384899e-21,4.247404357095478e-22,5.728501490267462e-17)
    sum e = 3.1607645239025484e-09
    sum de = -3.023161829177325e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319019554080987 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.648107644682698 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1803                                                    [SPH][rank=0]
Info: time since start : 741.033365989 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 41):
   -> t = 4.100000000000001 >= 4.100000000000001
--------------------------------
tfinal = 13.185609685945774
12.575000000000111
12.600000000000112
12.625000000000112
12.650000000000112
12.675000000000113
12.700000000000113
12.725000000000113
12.750000000000114
12.775000000000114
12.800000000000114
12.825000000000115
12.850000000000115
12.875000000000115
12.900000000000116
12.925000000000116
12.950000000000117
12.975000000000117
13.000000000000117
13.025000000000118
13.050000000000118
13.075000000000118
13.100000000000119
13.125000000000119
13.15000000000012
13.17500000000012
tfinal = 13.185609685945774
12.575000000000111
12.600000000000112
12.625000000000112
12.650000000000112
12.675000000000113
12.700000000000113
12.725000000000113
12.750000000000114
12.775000000000114
12.800000000000114
12.825000000000115
12.850000000000115
12.875000000000115
12.900000000000116
12.925000000000116
12.950000000000117
12.975000000000117
13.000000000000117
13.025000000000118
13.050000000000118
13.075000000000118
13.100000000000119
13.125000000000119
13.15000000000012
13.17500000000012
tfinal = 13.185609685945774
12.575000000000111
12.600000000000112
12.625000000000112
12.650000000000112
12.675000000000113
12.700000000000113
12.725000000000113
12.750000000000114
12.775000000000114
12.800000000000114
12.825000000000115
12.850000000000115
12.875000000000115
12.900000000000116
12.925000000000116
12.950000000000117
12.975000000000117
13.000000000000117
13.025000000000118
13.050000000000118
13.075000000000118
13.100000000000119
13.125000000000119
13.15000000000012
13.17500000000012
tfinal = 13.185609685945774
12.575000000000111
12.600000000000112
12.625000000000112
12.650000000000112
12.675000000000113
12.700000000000113
12.725000000000113
12.750000000000114
12.775000000000114
12.800000000000114
12.825000000000115
12.850000000000115
12.875000000000115
12.900000000000116
12.925000000000116
12.950000000000117
12.975000000000117
13.000000000000117
13.025000000000118
13.050000000000118
13.075000000000118
13.100000000000119
13.125000000000119
13.15000000000012
13.17500000000012
tfinal = 13.185609685945774
12.575000000000111
12.600000000000112
12.625000000000112
12.650000000000112
12.675000000000113
12.700000000000113
12.725000000000113
12.750000000000114
12.775000000000114
12.800000000000114
12.825000000000115
12.850000000000115
12.875000000000115
12.900000000000116
12.925000000000116
12.950000000000117
12.975000000000117
13.000000000000117
13.025000000000118
13.050000000000118
13.075000000000118
13.100000000000119
13.125000000000119
13.15000000000012
13.17500000000012
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[4.80760373e-15 2.11345511e-14 2.93054230e-14 ... 2.92928430e-14
 2.88933715e-16 1.31543459e-21]
(9216, 3)
[[4.80760373e-15 2.11345511e-14 2.93054230e-14 6.23929580e-17
  0.00000000e+00]
 [5.38772795e-06 6.35550475e-14 3.26665278e-13 3.49567293e-14
  0.00000000e+00]
 [1.12857235e-14 5.73790255e-14 3.79034218e-14 3.19847897e-16
  0.00000000e+00]
 ...
 [4.25588238e-05 5.33245101e-05 5.88897447e-05 1.42158792e-05
  1.46192199e-13]
 [3.15083941e-05 3.25880097e-05 1.59076908e-05 1.18263308e-12
  9.24856640e-19]
 [9.38236365e-15 3.60995366e-14 2.92928430e-14 2.88933715e-16
  1.31543459e-21]]
compute original rho
0.0006754720007297833 0.0
0.001120364043980456 0.0
0.0019735875100119 0.0
0.00389254282318304 0.0
0.009454427692456647 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.100000000000001 -> 4.200000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.200000000000001 (current = 4.100000000000001)
   -> iter = None (current = 1802)
   -> walltime = 761.9484350780001 (current = 746.8636746430001)

Info: evolve_until (target_time = 4.20s, niter_max = -1, max_walltime = 761.95s)      [SPH][rank=0]
---------------- t = 4.100000000000001, dt = 0.002319019554080987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.4%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 293.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.191657388602642e-22,-8.412198271954285e-23,-3.362264371072993e-18)
    sum a = (-3.0967710746826787e-21,4.19783219509532e-22,5.455845659214097e-17)
    sum e = 3.1607638230498482e-09
    sum de = -2.912727542461125e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190357591159672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.858560383100734 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.48s (niter = 12) global walltime = 747.15s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.102319019554082, dt = 0.0023190357591159672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.6%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 334.87 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.120252500428514e-22,-8.315422657211396e-23,-3.2389028302221716e-18)
    sum a = (-3.060280380594971e-21,4.1664182246651267e-22,5.183675828444687e-17)
    sum e = 3.1607631603828223e-09
    sum de = -2.802585405575966e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319052173150753 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1687e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70404267816417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.104638055313198, dt = 0.002319052173150753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.3%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 293.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.049706066212131e-22,-8.21917013843548e-23,-3.1218465411853145e-18)
    sum a = (-3.024493768974906e-21,4.1072914683547295e-22,4.910568259302107e-17)
    sum e = 3.1607625232197726e-09
    sum de = -2.692711336784664e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190687033711453 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1808e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.814118490466807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.106957107486349, dt = 0.0023190687033711453 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 320.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.979980696805498e-22,-8.124602221942765e-23,-3.0111338428585965e-18)
    sum a = (-2.9899612760845087e-21,4.054622823603256e-22,4.636684702019536e-17)
    sum e = 3.1607619115016506e-09
    sum de = -2.583146556832233e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319085336326015 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1716e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.731531918100746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.10927617618972, dt = 0.002319085336326015 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 268.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.911041269736452e-22,-8.03118480848553e-23,-2.9067809419115187e-18)
    sum a = (-2.955804982062054e-21,4.006838903787709e-22,4.362176214124483e-17)
    sum e = 3.160761325152284e-09
    sum de = -2.4739338644793466e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191020570373475 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1822e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.827459044058894 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.1115952615260465, dt = 0.0023191020570373475 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 268.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.842888819313385e-22,-7.938813807027855e-23,-2.808800666640533e-18)
    sum a = (-2.921613111407025e-21,3.9741723583881374e-22,4.0871924135271375e-17)
    sum e = 3.1607607640853985e-09
    sum de = -2.365115398339868e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319118849683078 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1947e+04 | 9216 |      1 | 2.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94094407010192 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.113914363583084, dt = 0.002319118849683078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 267.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.775529551386639e-22,-7.847029280434285e-23,-2.7172023943325336e-18)
    sum a = (-2.887110556105358e-21,3.9205755098822277e-22,3.81188174226461e-17)
    sum e = 3.160760228205037e-09
    sum de = -2.256732652707857e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319135697917423 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.554405221771887 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.116233482432767, dt = 0.002319135697917423 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.7%)
   patch tree reduce : 1.93 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 334.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.708974513250092e-22,-7.75672843621738e-23,-2.6319920750699046e-18)
    sum a = (-2.8541951896669825e-21,3.8734152890295726e-22,3.536391490987192e-17)
    sum e = 3.160759717405684e-09
    sum de = -2.1488264441562478e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319152585219724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8027e+04 | 9216 |      1 | 3.288e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.389644984381764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.118552618130685, dt = 0.002319152585219724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 304.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.643162438636513e-22,-7.667440774092161e-23,-2.5531722567002657e-18)
    sum a = (-2.820178115617036e-21,3.843795502555597e-22,3.260867445143463e-17)
    sum e = 3.1607592315724474e-09
    sum de = -2.0414369154734348e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191694952592492 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9418e+04 | 9216 |      1 | 3.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.650326482019178 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.120871770715905, dt = 0.0023191694952592492 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 325.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.578152283124173e-22,-7.578640557304277e-23,-2.480742125151392e-18)
    sum a = (-2.78912426881177e-21,3.78940218707406e-22,2.985453161718799e-17)
    sum e = 3.16075877058121e-09
    sum de = -1.9346035371501663e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319186412266258 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1818e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.82436171916796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.123190940211164, dt = 0.002319186412266258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 337.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.51382743394366e-22,-7.491392683364951e-23,-2.414697563084202e-18)
    sum a = (-2.7561691830056164e-21,3.744755935289685e-22,2.7102916401685032e-17)
    sum e = 3.1607583342987695e-09
    sum de = -1.8283650743046232e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192033213990442 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9203e+04 | 9216 |      1 | 3.156e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.455664467785855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.12551012662343, dt = 0.0023192033213990442 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.8%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 323.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.450288549107296e-22,-7.405053460350164e-23,-2.355031143619788e-18)
    sum a = (-2.7244975402225e-21,3.7054061732135556e-22,2.435523434277275e-17)
    sum e = 3.160757922583022e-09
    sum de = -1.722759598720049e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319220209096904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1768e+04 | 9216 |      1 | 2.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.77982260098715 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.127829329944829, dt = 0.002319220209096904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 264.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.387467980445013e-22,-7.319580635661826e-23,-2.301732208635461e-18)
    sum a = (-2.693986861018791e-21,3.66492933408667e-22,2.1612876110330677e-17)
    sum e = 3.16075753528311e-09
    sum de = -1.617824473162473e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192370634092813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.87530114273815 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.67s (niter = 9) global walltime = 750.73s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.130148550153926, dt = 0.0023192370634092813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1.80 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 280.08 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.325341784817896e-22,-7.235050792133976e-23,-2.2547868916526725e-18)
    sum a = (-2.6634067780715725e-21,3.6138028816572604e-22,1.8877212687991474e-17)
    sum e = 3.160757172239592e-09
    sum de = -1.5135963378617093e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192538742923376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1955e+04 | 9216 |      1 | 2.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.94981895304839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.132467787217335, dt = 0.0023192538742923376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 293.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.87 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.263925608891174e-22,-7.15183341993428e-23,-2.2141781689962227e-18)
    sum a = (-2.6318951034597735e-21,3.5787879940729355e-22,1.6149597872932264e-17)
    sum e = 3.1607568332846084e-09
    sum de = -1.4101111110520961e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319270633864545 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8269e+04 | 9216 |      1 | 3.260e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.61084640018125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.134787041091627, dt = 0.002319270633864545 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 330.09 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.203250129811587e-22,-7.069239713687633e-23,-2.1798858965419124e-18)
    sum a = (-2.602187076175803e-21,3.5348936679837017e-22,1.3431361498857189e-17)
    sum e = 3.160756518242052e-09
    sum de = -1.3074039778261848e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192873366142596 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.514821931561688 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.137106311725492, dt = 0.0023192873366142596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 274.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.143242901978657e-22,-6.987759979584367e-23,-2.1518868728115594e-18)
    sum a = (-2.5720528808250084e-21,3.496435694304358e-22,1.0723817734306446e-17)
    sum e = 3.1607562269277314e-09
    sum de = -1.2055093859949104e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193039795538013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1974e+04 | 9216 |      1 | 2.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.967631145076417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.139425599062106, dt = 0.0023193039795538013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 276.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.083938167602089e-22,-6.907117375080749e-23,-2.130154865664754e-18)
    sum a = (-2.5415848976516035e-21,3.458510416954443e-22,8.028253310334237e-18)
    sum e = 3.1607559591495474e-09
    sum de = -1.1044610396230288e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193205623165077 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1368e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.418276962682462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.141744903041659, dt = 0.0023193205623165077 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 282.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.025344707299921e-22,-6.827329945557213e-23,-2.1146606891936388e-18)
    sum a = (-2.512925232148542e-21,3.419484751011237e-22,5.345939381812148e-18)
    sum e = 3.1607557147076655e-09
    sum de = -1.0042918815428162e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319337087192095 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2002e+04 | 9216 |      1 | 2.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.993525300467535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.1440642236039755, dt = 0.002319337087192095 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 296.19 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.967393266423099e-22,-6.748483296538013e-23,-2.105372226727465e-18)
    sum a = (-2.483833644963151e-21,3.3683166456625396e-22,2.678121504197411e-18)
    sum e = 3.1607554933946886e-09
    sum de = -9.05034105560963e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193535591019086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.768790227922977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.146383560691167, dt = 0.0023193535591019086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 351.67 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.910121916323025e-22,-6.670947358322046e-23,-2.1022545005653366e-18)
    sum a = (-2.455157667096374e-21,3.332021377818374e-22,2.602380074380398e-20)
    sum e = 3.1607552949958384e-09
    sum de = -8.067191347127382e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193699855125344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1368e+04 | 9216 |      1 | 2.938e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41906562710145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.148702914250269, dt = 0.0023193699855125344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 338.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.853509266621917e-22,-6.594089882397278e-23,-2.1052697179380115e-18)
    sum a = (-2.4268973816229805e-21,3.297623488198963e-22,-2.6091571851413382e-18)
    sum e = 3.1607551192891296e-09
    sum de = -7.093776389438758e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193863762914204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1791e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.802626140959955 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.07s (niter = 7) global walltime = 753.38s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.151022284235782, dt = 0.0023193863762914204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.1%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 263.30 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.797548561305393e-22,-6.518002416059566e-23,-2.114377341265503e-18)
    sum a = (-2.3986285130404362e-21,3.2617332181094543e-22,-5.226242269024454e-18)
    sum e = 3.1607549660455376e-09
    sum de = -6.130395025287249e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194027435076946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9164e+04 | 9216 |      1 | 3.160e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.422715234136206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.153341670612074, dt = 0.0023194027435076946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 262.28 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.742242309121465e-22,-6.442766603652096e-23,-2.1295341177124392e-18)
    sum a = (-2.3709625175113035e-21,3.217878014184936e-22,-7.824085017622708e-18)
    sum e = 3.1607548350291995e-09
    sum de = -5.177338417981135e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194191011836982 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1816e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.825868327845246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.155661073355581, dt = 0.0023194191011836982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 313.59 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.687571012256638e-22,-6.36864102227255e-23,-2.150694171757015e-18)
    sum a = (-2.3430491110137957e-21,3.1827251729681763e-22,-1.0401556672685277e-17)
    sum e = 3.1607547259975783e-09
    sum de = -4.2348898967123774e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194354650038895 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1762e+04 | 9216 |      1 | 2.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.77685787453051 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.157980492456765, dt = 0.0023194354650038895 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 301.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.633548754910276e-22,-6.295225812698384e-23,-2.1778090297178547e-18)
    sum a = (-2.3178784092346862e-21,3.1523926929965822e-22,-1.2957559956616045e-17)
    sum e = 3.1607546387016514e-09
    sum de = -3.303325014585058e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194518519883815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0699e+04 | 9216 |      1 | 3.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.813838778141534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.160299927921769, dt = 0.0023194518519883815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.8%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 306.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.86 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5800787522248815e-22,-6.22246749898514e-23,-2.210827708448157e-18)
    sum a = (-2.2897958283959374e-21,3.109328223338419e-22,-1.549101834339462e-17)
    sum e = 3.1607545728860846e-09
    sum de = -2.382911450341962e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319468280140155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8391e+04 | 9216 |      1 | 3.246e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.723082685658493 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.162619379773758, dt = 0.002319468280140155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.7%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.4%)
   LB compute        : 323.84 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.527293087582605e-22,-6.150839442270789e-23,-2.2496967515238355e-18)
    sum a = (-2.2643313769820556e-21,3.06941271107748e-22,-1.8000886649911847e-17)
    sum e = 3.1607545282894306e-09
    sum de = -1.4739090123104895e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194847680743013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9579e+04 | 9216 |      1 | 3.116e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.79967580911219 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.164938848053898, dt = 0.0023194847680743013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.0%)
   patch tree reduce : 2.11 us    (0.4%)
   gen split merge   : 1.15 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.84 us    (0.3%)
   LB compute        : 574.89 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.475068040094667e-22,-6.080107712806536e-23,-2.2943603139687794e-18)
    sum a = (-2.238243102268209e-21,3.039109147727703e-22,-2.0486142689431205e-17)
    sum e = 3.1607545046442904e-09
    sum de = -5.765695894398784e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319501334639506 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.953e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.274379455518144 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.49s (niter = 5) global walltime = 755.51s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.167258332821972, dt = 0.002319501334639506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 255.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.423454422911583e-22,-6.009966639453074e-23,-2.344760206058915e-18)
    sum a = (-2.2125044777065056e-21,3.0047497090728813e-22,-2.294579453662375e-17)
    sum e = 3.1607545016775207e-09
    sum de = 3.088628011764963e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319517998540439 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1042e+04 | 9216 |      1 | 2.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.125720330288843 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.169577834156612, dt = 0.002319517998540439 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 305.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.372433376410141e-22,-5.940667537142791e-23,-2.4008359724429463e-18)
    sum a = (-2.1862562758085623e-21,2.9722938324865964e-22,-2.5378878474307514e-17)
    sum e = 3.1607545191104017e-09
    sum de = 1.1821520600620538e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319534777971352 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65029627411137 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.171897352155152, dt = 0.002319534777971352 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 296.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.322027325276518e-22,-5.872111596414531e-23,-2.4625249545628667e-18)
    sum a = (-2.161200630384805e-21,2.9332158734516147e-22,-2.778445334301197e-17)
    sum e = 3.1607545566588234e-09
    sum de = 2.0430700758161444e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319551690273835 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1055e+04 | 9216 |      1 | 2.968e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.137822315078964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.174216886933123, dt = 0.002319551690273835 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 300.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 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.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.272186578694832e-22,-5.804521743736336e-23,-2.529762337443208e-18)
    sum a = (-2.1374226298052924e-21,2.8983962335826013e-22,-3.0161611324716917e-17)
    sum e = 3.160754614033483e-09
    sum de = 2.891396580676344e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195687515990466 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.609037067953512 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.176536438623397, dt = 0.0023195687515990466 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 311.94 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.222883958561628e-22,-5.737694198348674e-23,-2.602481239046486e-18)
    sum a = (-2.1111780402844204e-21,2.8721054676937233e-22,-3.2509471059116424e-17)
    sum e = 3.160754690940044e-09
    sum de = 3.7269193955164575e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195859766522078 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1706e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.727911632851256 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.19s (niter = 4) global walltime = 756.98s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.178856007374995, dt = 0.0023195859766522078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.6%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.3%)
   LB compute        : 363.33 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.174218252331499e-22,-5.67137566472862e-23,-2.6806127632583958e-18)
    sum a = (-2.0871605841085163e-21,2.840057537741336e-22,-3.482717708553243e-17)
    sum e = 3.160754787079352e-09
    sum de = 4.549434099767486e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319603378431424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.557643380838606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.1811755933516475, dt = 0.002319603378431424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.71 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 269.20 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 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.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.126082111997425e-22,-5.605872034081094e-23,-2.7640860600047873e-18)
    sum a = (-2.0628713887104936e-21,2.806192223415266e-22,-3.711390849481198e-17)
    sum e = 3.1607549021475894e-09
    sum de = 5.3587443440477944e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319620968036903 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1811e+04 | 9216 |      1 | 2.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.823891765898427 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.183495196730079, dt = 0.002319620968036903 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (1.6%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.4%)
   LB compute        : 342.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0785135428911247e-22,-5.541170982731653e-23,-2.8528284154406055e-18)
    sum a = (-2.0397790784773048e-21,2.7662809199092146e-22,-3.9368871676875684e-17)
    sum e = 3.1607550358364873e-09
    sum de = 6.154661645277296e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319638754525749 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1671e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.697445787426094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.185814817698116, dt = 0.002319638754525749 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 262.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.0314659571218924e-22,-5.477462427306085e-23,-2.946765305759786e-18)
    sum a = (-2.015172667297813e-21,2.7402211678997346e-22,-4.159129627026916e-17)
    sum e = 3.1607551878334812e-09
    sum de = 6.937005480969725e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319656744819373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1882e+04 | 9216 |      1 | 2.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.889013570820303 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.89s (niter = 3) global walltime = 758.14s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.188134456452642, dt = 0.002319656744819373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.0%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 262.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.985005990557965e-22,-5.414200605079068e-23,-3.045820447797142e-18)
    sum a = (-1.9924361063352885e-21,2.7151014591747803e-22,-4.378044762394189e-17)
    sum e = 3.160755357821918e-09
    sum de = 7.705603117489569e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196749436643787 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1566e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60270339843049 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.190454113197461, dt = 0.0023196749436643787 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 325.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9390519328364747e-22,-5.351510513319948e-23,-3.1499158950528926e-18)
    sum a = (-1.968930373135371e-21,2.6798478389096093e-22,-4.5935619404455395e-17)
    sum e = 3.1607555454812202e-09
    sum de = 8.460289756084955e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196933536463607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1710e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.732891563290135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.192773788141126, dt = 0.0023196933536463607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 286.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8936509440187265e-22,-5.289755260293559e-23,-3.2589720950406664e-18)
    sum a = (-1.94576654817926e-21,2.6384455963632392e-22,-4.8056132743024267e-17)
    sum e = 3.1607557504870837e-09
    sum de = 9.200908518648116e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319709144549986 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9676e+04 | 9216 |      1 | 3.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.890472522381373 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.59s (niter = 2) global walltime = 759.04s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.195093481494772, dt = 0.002319709144549986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.3%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 274.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8487835482977884e-22,-5.229031234739291e-23,-3.37290781594733e-18)
    sum a = (-1.924450522865488e-21,2.6181958351681606e-22,-5.0141337557173076e-17)
    sum e = 3.160755972511388e-09
    sum de = 9.927309271776746e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196958010607603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1803e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.81782328260368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.197413190639322, dt = 0.0023196958010607603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 294.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8043892276295226e-22,-5.1685325563748336e-23,-3.491639000568679e-18)
    sum a = (-1.9027812064139718e-21,2.5869841600546014e-22,-5.2190588272756596e-17)
    sum e = 3.160756211219902e-09
    sum de = 1.0639341754359077e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319682609822546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.836732086986682 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 759.62s (max_walltime = 761.95s)  [SPH][rank=0]
---------------- t = 4.199732886440383, dt = 0.00026711355961772654 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.6%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 316.30 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.7995580831692203e-22,-5.1619785622274326e-23,-3.507956633450025e-18)
    sum a = (-1.8995772788267645e-21,2.5846941572643977e-22,-5.2412498349629515e-17)
    sum e = 3.1607562478814587e-09
    sum de = 1.0713271970911386e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319681175683223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.991e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.214739317031467 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 759.92s (max_walltime = 761.95s)  [SPH][rank=0]
Info: iteration since start : 1847                                                    [SPH][rank=0]
Info: time since start : 759.9180840370001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 42):
   -> t = 4.200000000000001 >= 4.200000000000001
--------------------------------
tfinal = 13.813495861466997
13.20000000000012
13.22500000000012
13.25000000000012
13.275000000000121
13.300000000000122
13.325000000000122
13.350000000000122
13.375000000000123
13.400000000000123
13.425000000000123
13.450000000000124
13.475000000000124
13.500000000000124
13.525000000000125
13.550000000000125
13.575000000000125
13.600000000000126
13.625000000000126
13.650000000000126
13.675000000000127
13.700000000000127
13.725000000000128
13.750000000000128
13.775000000000128
13.800000000000129
tfinal = 13.813495861466997
13.20000000000012
13.22500000000012
13.25000000000012
13.275000000000121
13.300000000000122
13.325000000000122
13.350000000000122
13.375000000000123
13.400000000000123
13.425000000000123
13.450000000000124
13.475000000000124
13.500000000000124
13.525000000000125
13.550000000000125
13.575000000000125
13.600000000000126
13.625000000000126
13.650000000000126
13.675000000000127
13.700000000000127
13.725000000000128
13.750000000000128
13.775000000000128
13.800000000000129
tfinal = 13.813495861466997
13.20000000000012
13.22500000000012
13.25000000000012
13.275000000000121
13.300000000000122
13.325000000000122
13.350000000000122
13.375000000000123
13.400000000000123
13.425000000000123
13.450000000000124
13.475000000000124
13.500000000000124
13.525000000000125
13.550000000000125
13.575000000000125
13.600000000000126
13.625000000000126
13.650000000000126
13.675000000000127
13.700000000000127
13.725000000000128
13.750000000000128
13.775000000000128
13.800000000000129
tfinal = 13.813495861466997
13.20000000000012
13.22500000000012
13.25000000000012
13.275000000000121
13.300000000000122
13.325000000000122
13.350000000000122
13.375000000000123
13.400000000000123
13.425000000000123
13.450000000000124
13.475000000000124
13.500000000000124
13.525000000000125
13.550000000000125
13.575000000000125
13.600000000000126
13.625000000000126
13.650000000000126
13.675000000000127
13.700000000000127
13.725000000000128
13.750000000000128
13.775000000000128
13.800000000000129
tfinal = 13.813495861466997
13.20000000000012
13.22500000000012
13.25000000000012
13.275000000000121
13.300000000000122
13.325000000000122
13.350000000000122
13.375000000000123
13.400000000000123
13.425000000000123
13.450000000000124
13.475000000000124
13.500000000000124
13.525000000000125
13.550000000000125
13.575000000000125
13.600000000000126
13.625000000000126
13.650000000000126
13.675000000000127
13.700000000000127
13.725000000000128
13.750000000000128
13.775000000000128
13.800000000000129
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[4.10046367e-15 1.78180409e-14 2.16387296e-14 ... 2.33071941e-14
 4.41942603e-17 1.72899733e-21]
(9216, 3)
[[4.10046367e-15 1.78180409e-14 2.16387296e-14 5.02855302e-17
  0.00000000e+00]
 [5.13769269e-06 5.22309832e-14 2.58036092e-13 2.65318438e-14
  0.00000000e+00]
 [8.67318440e-15 4.58344102e-14 2.83677058e-14 2.28687995e-16
  0.00000000e+00]
 ...
 [4.25713876e-05 5.32620652e-05 5.78424724e-05 1.00650509e-05
  8.11590863e-14]
 [3.13630772e-05 3.19678009e-05 1.41059818e-05 6.90145024e-13
  6.35352729e-19]
 [7.59949810e-15 2.10313365e-14 2.33071941e-14 4.41942603e-17
  1.72899733e-21]]
compute original rho
0.0006764390465273865 0.0
0.0011243207987929745 0.0
0.0019889670659548066 0.0
0.003952391379907436 0.0
0.009733732971594517 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.200000000000001 -> 4.300000000000001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.300000000000001 (current = 4.200000000000001)
   -> iter = None (current = 1846)
   -> walltime = 761.9484350780001 (current = 766.0199588090001)

Info: evolve_until (target_time = 4.30s, niter_max = -1, max_walltime = 761.95s)      [SPH][rank=0]
---------------- t = 4.200000000000001, dt = 0.002319681175683223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 304.24 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (74.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.755498394275198e-22,-5.102031148228674e-23,-3.629566556813778e-18)
    sum a = (-1.87765168056193e-21,2.548670004756333e-22,-5.443281517049823e-17)
    sum e = 3.1607564965099727e-09
    sum de = 1.1416292810600745e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196680768032634 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.48541822305404 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 766.31s > 761.95s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 24):
   -> walltime = 766.3137462560001 >= 761.9484350780001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000024.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (54.4%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000024.sham              [Shamrock Dump][rank=0]
              - took 1.47 ms, bandwidth = 2.37 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 766.3137462560001 -> 796.3137462560001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.300000000000001 (current = 4.202319681175684)
   -> iter = None (current = 1847)
   -> walltime = 796.3137462560001 (current = 766.3177881910001)

Info: evolve_until (target_time = 4.30s, niter_max = -1, max_walltime = 796.31s)      [SPH][rank=0]
---------------- t = 4.202319681175684, dt = 0.0023196680768032634 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (0.9%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.14 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 328.32 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.712196875438144e-22,-5.043329085545479e-23,-3.7581758659627815e-18)
    sum a = (-1.856572495364715e-21,2.5150988301313375e-22,-5.64040501955096e-17)
    sum e = 3.1607567694839295e-09
    sum de = 1.209748943413656e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196552054439417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1639e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.66902556181452 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.29s (niter = 25) global walltime = 766.61s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.204639349252488, dt = 0.0023196552054439417 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 313.61 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6693755837862508e-22,-4.9853785469376786e-23,-3.8913001200508766e-18)
    sum a = (-1.835336704873862e-21,2.4901890254916576e-22,-5.833767013508967e-17)
    sum e = 3.1607570580046674e-09
    sum de = 1.2763945722278602e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196424810362497 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.362872912369117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.206959004457931, dt = 0.0023196424810362497 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 291.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6270493077288494e-22,-4.92790533064892e-23,-4.028865323768377e-18)
    sum a = (-1.8130990843760737e-21,2.4670357460798195e-22,-6.023310761451827e-17)
    sum e = 3.1607573618122667e-09
    sum de = 1.341553594434738e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196299015163457 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1822e+04 | 9216 |      1 | 2.896e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83389719586597 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.209278646938968, dt = 0.0023196299015163457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 295.96 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5852495166488924e-22,-4.8709404659309256e-23,-4.170782209852414e-18)
    sum a = (-1.792327574015587e-21,2.4313508082124324e-22,-6.208989719110901e-17)
    sum e = 3.1607576805602773e-09
    sum de = 1.4052158977914802e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319617463564618 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.908e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.713392008449066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.211598276840484, dt = 0.002319617463564618 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.2%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 302.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.5439154504300644e-22,-4.814963035627658e-23,-4.316960551949882e-18)
    sum a = (-1.772517737188929e-21,2.396263887650661e-22,-6.390760079557836e-17)
    sum e = 3.1607580139002064e-09
    sum de = 1.4673721033939025e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023196051635756172 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.689069562910394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.213917894304049, dt = 0.0023196051635756172 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.4%)
   LB compute        : 320.08 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.503029437803477e-22,-4.7597818027196386e-23,-4.46730914123904e-18)
    sum a = (-1.7515897623767986e-21,2.3757278265920436e-22,-6.568581218058852e-17)
    sum e = 3.1607583614814762e-09
    sum de = 1.5280135807863768e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195929978085117 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1668e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694029503253766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.216237499467624, dt = 0.0023195929978085117 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 291.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.462642423959014e-22,-4.70491394324745e-23,-4.6217358654996386e-18)
    sum a = (-1.7316938699917037e-21,2.34989613408108e-22,-6.742415390263322e-17)
    sum e = 3.1607587229515974e-09
    sum de = 1.5871324535375487e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319580962538159 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1701e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.72437661907829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.218557092465432, dt = 0.002319580962538159 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 327.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4227052242317123e-22,-4.650701439176878e-23,-4.78014777189764e-18)
    sum a = (-1.7112502474946877e-21,2.3307848108241346e-22,-6.912227411473992e-17)
    sum e = 3.1607590979563542e-09
    sum de = 1.6447215829824994e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195690541967244 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1675e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70021600002047 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.220876673427971, dt = 0.0023195690541967244 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 313.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.383248295702694e-22,-4.596874049932643e-23,-4.942451123461483e-18)
    sum a = (-1.6916924870274444e-21,2.2971091930582364e-22,-7.07798566775671e-17)
    sum e = 3.1607594861399627e-09
    sum de = 1.700774565541718e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195572695013 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6321e+04 | 9216 |      1 | 3.501e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.848807559873226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.223196242482167, dt = 0.0023195572695013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 330.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3442356356373376e-22,-4.543980399093062e-23,-5.108551493233578e-18)
    sum a = (-1.672041022621313e-21,2.2712998922236038e-22,-7.239660570085993e-17)
    sum e = 3.1607598871452494e-09
    sum de = 1.7552857296980615e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319545605564407 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1532e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.570386006605467 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.225515799751669, dt = 0.002319545605564407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 271.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3056792596182243e-22,-4.4915926791024797e-23,-5.278353792794938e-18)
    sum a = (-1.6527369669990354e-21,2.2432520949559693e-22,-7.3972258122929e-17)
    sum e = 3.1607603006138162e-09
    sum de = 1.8082501247067085e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319534059983057 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.733269338468432 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.227835345357233, dt = 0.002319534059983057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 268.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2675670860430887e-22,-4.4398827612062495e-23,-5.451762363761035e-18)
    sum a = (-1.6334043468599245e-21,2.2227346074352624e-22,-7.55065795292738e-17)
    sum e = 3.160760726186208e-09
    sum de = 1.8596635160744498e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319522630905688 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0539e+04 | 9216 |      1 | 3.018e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.669960884964766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.230154879417216, dt = 0.002319522630905688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 296.89 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.229904154414514e-22,-4.388557518005126e-23,-5.628681039151773e-18)
    sum a = (-1.6153384034948045e-21,2.200863705378721e-22,-7.699936433479368e-17)
    sum e = 3.160761163502073e-09
    sum de = 1.9095223819630494e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195113170744438 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9824e+04 | 9216 |      1 | 3.090e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.022082352636243 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.232474402048122, dt = 0.0023195113170744438 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 273.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.192646363583246e-22,-4.337764173395577e-23,-5.809013210369557e-18)
    sum a = (-1.5966097424329159e-21,2.1706408015785e-22,-7.845043037611448e-17)
    sum e = 3.16076161220034e-09
    sum de = 1.9578239064613195e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195001178425976 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8388e+04 | 9216 |      1 | 3.246e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.72140854377533 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.234793913365197, dt = 0.0023195001178425976 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.4%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 272.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1558302224348206e-22,-4.2877608643440545e-23,-5.992661874821493e-18)
    sum a = (-1.5771529689760906e-21,2.146624094726015e-22,-7.985962469353634e-17)
    sum e = 3.1607620719193643e-09
    sum de = 2.004565963883961e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.77e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194890331673565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.695147082323768 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.237113413483039, dt = 0.0023194890331673565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.1%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 313.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1194736223037413e-22,-4.2382522627951637e-23,-6.179529711652494e-18)
    sum a = (-1.5600036671179918e-21,2.1118230779096758e-22,-8.122682559389138e-17)
    sum e = 3.1607625422970995e-09
    sum de = 2.0497471251869947e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194780635789796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.604657704516043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2394329025162065, dt = 0.0023194780635789796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 345.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0834881628324426e-22,-4.189667716763865e-23,-6.369519155503019e-18)
    sum a = (-1.5421720133089498e-21,2.0946161364656833e-22,-8.255193344821496e-17)
    sum e = 3.1607630229712604e-09
    sum de = 2.09336663536431e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319467210128206 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1100e+04 | 9216 |      1 | 2.963e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.17812672822619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.241752380579785, dt = 0.002319467210128206 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 304.03 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.0479253173682847e-22,-4.141286291295257e-23,-6.5625324377790836e-18)
    sum a = (-1.5238741306885204e-21,2.065338700567399e-22,-8.383487635093448e-17)
    sum e = 3.160763513579463e-09
    sum de = 2.1354244221521685e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319456474314477 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.019e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.659129963813736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.244071847789914, dt = 0.002319456474314477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 254.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.01279228205688e-22,-4.0937298918174687e-23,-6.758471656364916e-18)
    sum a = (-1.5060277071757244e-21,2.0435116960994194e-22,-8.507560938319292e-17)
    sum e = 3.1607640137593986e-09
    sum de = 2.1759210680634264e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194458579980167 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.68378881951393 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.246391304264228, dt = 0.0023194458579980167 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.8%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 326.00 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.978067600500761e-22,-4.0465773127432966e-23,-6.957238839267034e-18)
    sum a = (-1.4899105911755005e-21,2.0262645046544343e-22,-8.627411331633356e-17)
    sum e = 3.1607645231489707e-09
    sum de = 2.2148578159417334e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319435363299549 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1460e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.503726299401944 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.248710750122226, dt = 0.002319435363299549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 272.44 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (1.6%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.94369691649301e-22,-3.9997810198998893e-23,-7.158736001251984e-18)
    sum a = (-1.4711160952842137e-21,2.0034287359119895e-22,-8.743039424068332e-17)
    sum e = 3.160765041386461e-09
    sum de = 2.2522365585879137e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194249924915894 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57754138042782 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.251030185485525, dt = 0.0023194249924915894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 271.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9097931457007097e-22,-3.9535793443483454e-23,-7.362865202143095e-18)
    sum a = (-1.454792809712203e-21,1.9699349143506836e-22,-8.85444846251923e-17)
    sum e = 3.1607655681106686e-09
    sum de = 2.288059832521572e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.78e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194147478852764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8955e+04 | 9216 |      1 | 3.183e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.23407909654918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.253349610478017, dt = 0.0023194147478852764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 292.22 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8762402255184825e-22,-3.9082821384746545e-23,-7.569528610195251e-18)
    sum a = (-1.4374939325565395e-21,1.9573109163630601e-22,-8.961643779599806e-17)
    sum e = 3.1607661029610626e-09
    sum de = 2.32233080047745e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231940463171793 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51249590093304 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.2556690252259015, dt = 0.00231940463171793 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.61 us    (0.9%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 271.48 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8430994222135584e-22,-3.863023884214827e-23,-7.778628543039752e-18)
    sum a = (-1.4223077821342205e-21,1.9343092511567102e-22,-9.064633653336251e-17)
    sum e = 3.1607666455779257e-09
    sum de = 2.3550532601623293e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193946460438636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.607311967333146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.25798842985762, dt = 0.0023193946460438636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 325.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.810287308911272e-22,-3.818426046865763e-23,-7.99006754662102e-18)
    sum a = (-1.4047096586548847e-21,1.9094987346209002e-22,-9.16342828432604e-17)
    sum e = 3.1607671956025015e-09
    sum de = 2.3862316078988795e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193847926342324 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.370225659540136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.260307824503664, dt = 0.0023193847926342324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 2.62 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 299.73 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.777910331349623e-22,-3.7744300889738593e-23,-8.203748427460145e-18)
    sum a = (-1.3882644545314805e-21,1.8921015299477765e-22,-9.258040618933796e-17)
    sum e = 3.1607677526771297e-09
    sum de = 2.415870849260924e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193750728885375 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55013786338511 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.37s (niter = 18) global walltime = 774.07s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.262627209296298, dt = 0.0023193750728885375 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 275.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7459020077063043e-22,-3.730747944649016e-23,-8.419574325789844e-18)
    sum a = (-1.3727818537191287e-21,1.864659221213389e-22,-9.34848569783041e-17)
    sum e = 3.1607683164453865e-09
    sum de = 2.443976587176885e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.79e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193654877611994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.578259022059946 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.264946584369186, dt = 0.0023193654877611994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 25.95 us   (8.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.5%)
   LB compute        : 281.22 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (58.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7142416078003787e-22,-3.687818644793256e-23,-8.637448757071763e-18)
    sum a = (-1.3570455612657478e-21,1.8351933431289379e-22,-9.434780609878479e-17)
    sum e = 3.160768886552224e-09
    sum de = 2.470555003963629e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193560377058504 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.630051830834024 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.267265949856947, dt = 0.0023193560377058504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 273.54 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6829491355962545e-22,-3.645586952937203e-23,-8.857275657962953e-18)
    sum a = (-1.341121978669695e-21,1.8328237591106918e-22,-9.516945191555988e-17)
    sum e = 3.160769462644099e-09
    sum de = 2.4956128624727756e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319346722639337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61146703635323 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.269585305894653, dt = 0.002319346722639337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 315.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.65202837622251e-22,-3.60310812739545e-23,-9.078959458970267e-18)
    sum a = (-1.3265931070224689e-21,1.7992956733331228e-22,-9.595000900160504e-17)
    sum e = 3.160770044369108e-09
    sum de = 2.5191574946003703e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319337541926682 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.480891584776096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.271904652617292, dt = 0.002319337541926682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 326.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6214290446861065e-22,-3.561770782198958e-23,-9.302405108199833e-18)
    sum a = (-1.3116324611368754e-21,1.770692722040044e-22,-9.668971849803932e-17)
    sum e = 3.1607706313771272e-09
    sum de = 2.541196783891993e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193284943878274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.541385562716393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.274223990159219, dt = 0.0023193284943878274 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 318.09 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5911815760616056e-22,-3.5210309151473244e-23,-9.527518145519721e-18)
    sum a = (-1.2963114875154966e-21,1.7499785893873689e-22,-9.738883680485617e-17)
    sum e = 3.1607712233199213e-09
    sum de = 2.5617391548824514e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.80e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193195783253896 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0838e+04 | 9216 |      1 | 2.989e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.939004757665394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.276543318653607, dt = 0.0023193195783253896 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.5%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 374.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5612936066258497e-22,-3.480684745481015e-23,-9.754204723857067e-18)
    sum a = (-1.2803606156828495e-21,1.7372410210374585e-22,-9.804764456446189e-17)
    sum e = 3.16077181985128e-09
    sum de = 2.580793576730271e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193107915725443 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.248233104665964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.278862638231932, dt = 0.0023193107915725443 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 323.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.89 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.531782741628042e-22,-3.440547418083387e-23,-9.982371676870722e-18)
    sum a = (-1.2654937331538602e-21,1.7176320744084827e-22,-9.866644603717438e-17)
    sum e = 3.1607724206271407e-09
    sum de = 2.598369539314586e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193021315591907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9837e+04 | 9216 |      1 | 3.089e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.03179244249951 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.281181949023505, dt = 0.0023193021315591907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 281.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5026050559714193e-22,-3.400935387308882e-23,-1.0211926572020356e-17)
    sum a = (-1.2515660356534978e-21,1.7133844339264841e-22,-9.924555369692614e-17)
    sum e = 3.1607730253057042e-09
    sum de = 2.614477049997183e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231929359539404 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8830e+04 | 9216 |      1 | 3.197e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.11977897198331 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.283501251155064, dt = 0.00231929359539404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 326.64 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (55.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.473738477074792e-22,-3.361244352978574e-23,-1.0442777711840358e-17)
    sum a = (-1.2364921869151948e-21,1.6839357759764105e-22,-9.978531030458759e-17)
    sum e = 3.1607736335475575e-09
    sum de = 2.6291266192725307e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.81e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319285179959675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1513e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55037026773948 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.285820544750458, dt = 0.002319285179959675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.4%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 282.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4452357326595254e-22,-3.322531070175931e-23,-1.0674834230332428e-17)
    sum a = (-1.2226238136030094e-21,1.6594676650326965e-22,-1.0028606844753873e-16)
    sum e = 3.160774245015789e-09
    sum de = 2.642329251393053e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192768820172807 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8820e+04 | 9216 |      1 | 3.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.110241399925112 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.288139829930418, dt = 0.0023192768820172807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.417040838033152e-22,-3.284328779731432e-23,-1.090800609083067e-17)
    sum a = (-1.2081950652086624e-21,1.6408759552043652e-22,-1.0074820631675353e-16)
    sum e = 3.1607748593760934e-09
    sum de = 2.654096434563619e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192686983170437 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.554388810510417 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.290459106812436, dt = 0.0023192686983170437 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.58 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 272.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3891864509329443e-22,-3.24648937748615e-23,-1.1142204165083261e-17)
    sum a = (-1.1939037499915695e-21,1.6145722109458396e-22,-1.0117211274298124e-16)
    sum e = 3.1607754762968977e-09
    sum de = 2.6644401361809516e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319260625710385 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0584e+04 | 9216 |      1 | 3.013e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.707756860409933 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2927783755107525, dt = 0.002319260625710385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 317.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.361662712419348e-22,-3.209346042781269e-23,-1.1377340238970866e-17)
    sum a = (-1.1805347957868334e-21,1.6117036006372672e-22,-1.0155819496433192e-16)
    sum e = 3.1607760954494564e-09
    sum de = 2.673372775529425e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.82e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319252661259935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1457e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49843839238929 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.295097636136463, dt = 0.002319252661259935 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1.48 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 311.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.334437955050358e-22,-3.171998487185622e-23,-1.1613327065653304e-17)
    sum a = (-1.166335390973866e-21,1.588013911288746e-22,-1.0190687856027611e-16)
    sum e = 3.1607767165079634e-09
    sum de = 2.680907228993717e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192448023430937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1553e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58564611201684 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.297416888797723, dt = 0.0023192448023430937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.8%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 315.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3075519006694904e-22,-3.1354400868855426e-23,-1.1850078406643694e-17)
    sum a = (-1.1530096367496922e-21,1.5684194284723194e-22,-1.022186037853885e-16)
    sum e = 3.160777339149652e-09
    sum de = 2.6870568149946347e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319237046745044 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.252762771577764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.2997361336000655, dt = 0.00026386639993525307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.18 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3046645517737965e-22,-3.13153106136542e-23,-1.187741194525204e-17)
    sum a = (-1.1528012489165055e-21,1.5674159512742557e-22,-1.0224998237544944e-16)
    sum e = 3.1607774107507584e-09
    sum de = 2.6869892117599133e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192362195675596 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2436e+04 | 9216 |      1 | 2.841e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3432591181883695 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1891                                                    [SPH][rank=0]
Info: time since start : 779.1357689480001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 43):
   -> t = 4.300000000000001 >= 4.300000000000001
--------------------------------
tfinal = 14.441382036988225
13.825000000000129
13.85000000000013
13.87500000000013
13.90000000000013
13.92500000000013
13.95000000000013
13.975000000000131
14.000000000000131
14.025000000000132
14.050000000000132
14.075000000000133
14.100000000000133
14.125000000000133
14.150000000000134
14.175000000000134
14.200000000000134
14.225000000000135
14.250000000000135
14.275000000000135
14.300000000000136
14.325000000000136
14.350000000000136
14.375000000000137
14.400000000000137
14.425000000000137
tfinal = 14.441382036988225
13.825000000000129
13.85000000000013
13.87500000000013
13.90000000000013
13.92500000000013
13.95000000000013
13.975000000000131
14.000000000000131
14.025000000000132
14.050000000000132
14.075000000000133
14.100000000000133
14.125000000000133
14.150000000000134
14.175000000000134
14.200000000000134
14.225000000000135
14.250000000000135
14.275000000000135
14.300000000000136
14.325000000000136
14.350000000000136
14.375000000000137
14.400000000000137
14.425000000000137
tfinal = 14.441382036988225
13.825000000000129
13.85000000000013
13.87500000000013
13.90000000000013
13.92500000000013
13.95000000000013
13.975000000000131
14.000000000000131
14.025000000000132
14.050000000000132
14.075000000000133
14.100000000000133
14.125000000000133
14.150000000000134
14.175000000000134
14.200000000000134
14.225000000000135
14.250000000000135
14.275000000000135
14.300000000000136
14.325000000000136
14.350000000000136
14.375000000000137
14.400000000000137
14.425000000000137
tfinal = 14.441382036988225
13.825000000000129
13.85000000000013
13.87500000000013
13.90000000000013
13.92500000000013
13.95000000000013
13.975000000000131
14.000000000000131
14.025000000000132
14.050000000000132
14.075000000000133
14.100000000000133
14.125000000000133
14.150000000000134
14.175000000000134
14.200000000000134
14.225000000000135
14.250000000000135
14.275000000000135
14.300000000000136
14.325000000000136
14.350000000000136
14.375000000000137
14.400000000000137
14.425000000000137
tfinal = 14.441382036988225
13.825000000000129
13.85000000000013
13.87500000000013
13.90000000000013
13.92500000000013
13.95000000000013
13.975000000000131
14.000000000000131
14.025000000000132
14.050000000000132
14.075000000000133
14.100000000000133
14.125000000000133
14.150000000000134
14.175000000000134
14.200000000000134
14.225000000000135
14.250000000000135
14.275000000000135
14.300000000000136
14.325000000000136
14.350000000000136
14.375000000000137
14.400000000000137
14.425000000000137
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.64986743e-15 1.78389241e-14 2.12223350e-14 ... 1.53541740e-14
 2.08069646e-17 2.23273951e-21]
(9216, 3)
[[3.64986743e-15 1.78389241e-14 2.12223350e-14 4.94593431e-17
  1.99512628e-22]
 [4.88861975e-06 5.12476468e-14 2.44772177e-13 2.42502386e-14
  0.00000000e+00]
 [7.57577924e-15 4.37110053e-14 2.63821638e-14 1.95665518e-16
  9.58995126e-22]
 ...
 [4.25812158e-05 5.31891220e-05 5.67345587e-05 6.13042879e-06
  7.06547583e-14]
 [3.12149031e-05 3.13411113e-05 1.23439447e-05 5.23463225e-13
  2.38281891e-15]
 [7.37851260e-15 2.04840516e-14 1.53541740e-14 2.08069646e-17
  2.23273951e-21]]
compute original rho
0.0006774081514607384 0.0
0.001128278988702054 0.0
0.0020043137112357085 0.0
0.004012273971911738 0.0
0.010016932672000635 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.300000000000001 -> 4.4

[Simulation] Evolve until next trigger(s) :
   -> t = 4.4 (current = 4.300000000000001)
   -> iter = None (current = 1890)
   -> walltime = 796.3137462560001 (current = 785.33301265)

Info: evolve_until (target_time = 4.40s, niter_max = -1, max_walltime = 796.31s)      [SPH][rank=0]
---------------- t = 4.300000000000001, dt = 0.0023192362195675596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.1%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 326.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2779281860242855e-22,-3.0951812832684075e-23,-1.211455794757319e-17)
    sum a = (-1.1400223918558997e-21,1.5537177745080934e-22,-1.0252286405626614e-16)
    sum e = 3.1607780339405206e-09
    sum de = 2.6922956932362225e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192285269718216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.4525e+04 | 9216 |      1 | 3.758e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.21821422104663 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.63s (niter = 7) global walltime = 785.71s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.302319236219568, dt = 0.0023192285269718216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.0%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.66 us    (0.5%)
   LB compute        : 335.10 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 5.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2516369910074583e-22,-3.0593042061125203e-23,-1.23526483371715e-17)
    sum a = (-1.1262947681097874e-21,1.5257000987215189e-22,-1.0275797190679087e-16)
    sum e = 3.160778658960719e-09
    sum de = 2.695562210114284e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.83e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192209854249963 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0921e+04 | 9216 |      1 | 2.980e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.012969021561197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.30463846474654, dt = 0.0023192209854249963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (1.9%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.51 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 365.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2256754762885365e-22,-3.024248853963228e-23,-1.259123941653282e-17)
    sum a = (-1.1129946284228772e-21,1.5182317044353858e-22,-1.0295759970165818e-16)
    sum e = 3.1607792844999126e-09
    sum de = 2.697489550595726e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319213543025958 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1501e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53786482477955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.306957685731964, dt = 0.002319213543025958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 320.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.200016749849361e-22,-2.9891164788486685e-23,-1.2830251566563794e-17)
    sum a = (-1.0998935226801862e-21,1.4943312087325685e-22,-1.0312223064065001e-16)
    sum e = 3.1607799103287986e-09
    sum de = 2.6980911977252937e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192062005389195 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1011e+04 | 9216 |      1 | 2.972e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.09447669240942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.30927689927499, dt = 0.0023192062005389195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 289.61 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1746593592568724e-22,-2.954745310696565e-23,-1.3069604190363692e-17)
    sum a = (-1.0870527600617387e-21,1.480461105704649e-22,-1.0325237876826295e-16)
    sum e = 3.16078053614151e-09
    sum de = 2.6973825471927716e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191989586787824 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59773798981966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.311596105475529, dt = 0.0023191989586787824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 308.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1495975387919568e-22,-2.920565379563939e-23,-1.3309217919922473e-17)
    sum a = (-1.074695482699883e-21,1.4579313437015704e-22,-1.0334857029242944e-16)
    sum e = 3.1607811616359727e-09
    sum de = 2.6953793819474195e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319191818751524 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1333e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38613311059346 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.313915304434208, dt = 0.002319191818751524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 327.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1248171382355664e-22,-2.8870165966152744e-23,-1.3549014622254003e-17)
    sum a = (-1.0625402387765795e-21,1.449507408009972e-22,-1.0341133802866092e-16)
    sum e = 3.1607817865138277e-09
    sum de = 2.692097828919002e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.84e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191847826009764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.025e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.59915640619235 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.31623449625296, dt = 0.0023191847826009764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 275.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1003158468987432e-22,-2.853496642262182e-23,-1.3788917408955712e-17)
    sum a = (-1.0498552386004643e-21,1.4235821821109715e-22,-1.0344122925657303e-16)
    sum e = 3.160782410480493e-09
    sum de = 2.687554373892703e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319177852537335 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1651e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.67366992727208 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 1.83s (niter = 6) global walltime = 787.78s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.318553681035561, dt = 0.002319177852537335 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 275.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0761148350936549e-22,-2.820791590881617e-23,-1.4028850678518404e-17)
    sum a = (-1.0374145563705048e-21,1.411335530633473e-22,-1.0343880518668741e-16)
    sum e = 3.1607830332452566e-09
    sum de = 2.6817658400363167e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319171031245601 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.597663097294557 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.320872858888098, dt = 0.002319171031245601 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.21 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 327.39 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.3%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0521989402994245e-22,-2.7881943716524263e-23,-1.426874014802039e-17)
    sum a = (-1.026673472795086e-21,1.3920166855015361e-22,-1.0340462894017059e-16)
    sum e = 3.1607836545213505e-09
    sum de = 2.674749381687239e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191643216763226 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1489e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.527129325757095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.323192029919344, dt = 0.0023191643216763226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 322.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.028514422492857e-22,-2.756133232261496e-23,-1.4508512843664104e-17)
    sum a = (-1.0139565598038041e-21,1.3726148426228835e-22,-1.0333928045895723e-16)
    sum e = 3.160784274026027e-09
    sum de = 2.6665224637778677e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.85e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231915772692188 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.108e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.860748747859663 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.32551119424102, dt = 0.00231915772692188 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.8%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 312.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0051459629226235e-22,-2.724528288890563e-23,-1.4748097157754406e-17)
    sum a = (-1.0028994664064868e-21,1.357818879539328e-22,-1.0324334506947919e-16)
    sum e = 3.1607848914806276e-09
    sum de = 2.657102864042864e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191512500813066 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1565e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.595660098880625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.327830351967942, dt = 0.0023191512500813066 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 305.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9820160104659804e-22,-2.693204369310048e-23,-1.4987422845871827e-17)
    sum a = (-9.904207986507136e-22,1.3474569745202794e-22,-1.031174154922278e-16)
    sum e = 3.1607855066106554e-09
    sum de = 2.6465086575021384e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191448941189403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1481e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51915501418602 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.330149503218023, dt = 0.0023191448941189403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.61 us    (0.5%)
   LB compute        : 272.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9591909589189884e-22,-2.662072126880241e-23,-1.522642104868328e-17)
    sum a = (-9.789224208794745e-22,1.331203313307558e-22,-1.0296209931584008e-16)
    sum e = 3.1607861191458433e-09
    sum de = 2.6347581897776534e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191386617197503 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1675e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.694481654405593 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.51s (niter = 5) global walltime = 789.55s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.332468648112142, dt = 0.0023191386617197503 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.0%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 272.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
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.1859809027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.936622503879144e-22,-2.6313870577802143e-23,-1.5465024333446978e-17)
    sum a = (-9.672530004099225e-22,1.319165614131549e-22,-1.027780015302422e-16)
    sum e = 3.1607867288202116e-09
    sum de = 2.621870090752474e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.86e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319132555146577 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.632828819098844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.334787786773862, dt = 0.002319132555146577 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 282.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9143252136901633e-22,-2.6009405398069015e-23,-1.5703166668636404e-17)
    sum a = (-9.57309148538143e-22,1.307320180781768e-22,-1.0256574097561455e-16)
    sum e = 3.160787335372139e-09
    sum de = 2.607863252208338e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231912657610366 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.970e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.112747312989875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.337106919329008, dt = 0.00231912657610366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 314.69 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8922398026753522e-22,-2.5707547995874218e-23,-1.5940783474119112e-17)
    sum a = (-9.45807101172773e-22,1.2765418918872067e-22,-1.0232593884196737e-16)
    sum e = 3.1607879385444145e-09
    sum de = 2.5927568031060405e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319120725612254 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7481e+04 | 9216 |      1 | 3.354e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.895217171505788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.339426045905111, dt = 0.002319120725612254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.7%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.5%)
   LB compute        : 286.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8704381662711475e-22,-2.541511600397199e-23,-1.6177811613999917e-17)
    sum a = (-9.35694389653582e-22,1.2689362096671252e-22,-1.0205922368141455e-16)
    sum e = 3.1607885380842922e-09
    sum de = 2.576570125843116e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319115003895675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1585e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61305665447106 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.341745166630724, dt = 0.002319115003895675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 325.81 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.88 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.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8488554731473552e-22,-2.512170692073894e-23,-1.641418941854935e-17)
    sum a = (-9.247350846129678e-22,1.2612703615078892e-22,-1.0176622855170442e-16)
    sum e = 3.1607891337435546e-09
    sum de = 2.5593228156962903e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191094102889614 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1069e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.145940820671086 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.21s (niter = 4) global walltime = 791.07s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.344064281634619, dt = 0.0023191094102889614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 282.90 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1857638888888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.82753740892566e-22,-2.4830051760457835e-23,-1.6649856692238226e-17)
    sum a = (-9.14372341143926e-22,1.2395073686256868e-22,-1.0144759262563877e-16)
    sum e = 3.1607897252785577e-09
    sum de = 2.541034709826646e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.87e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319103943167493 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1669e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.689384522837713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.346383391044908, dt = 0.002319103943167493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 271.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8064525702427938e-22,-2.4545185624401003e-23,-1.688475472828786e-17)
    sum a = (-9.025075541236299e-22,1.2304860373138348e-22,-1.011039532806647e-16)
    sum e = 3.1607903124502766e-09
    sum de = 2.521725831465349e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190985999005406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.635246463749727 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.348702494988076, dt = 0.0023190985999005406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 268.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7856601767557668e-22,-2.4260915866160956e-23,-1.7118826297218934e-17)
    sum a = (-8.931197970577994e-22,1.219649846881232e-22,-1.0073595912947019e-16)
    sum e = 3.160790895024362e-09
    sum de = 2.501416400645974e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319093376830616 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7940e+04 | 9216 |      1 | 3.299e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.310670955382257 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.351021593587976, dt = 0.002319093376830616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.1%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.30 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 266.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7650564675270833e-22,-2.3979302299894553e-23,-1.735201568535474e-17)
    sum a = (-8.827087524872386e-22,1.2023275965565942e-22,-1.0034425697233345e-16)
    sum e = 3.1607914727711675e-09
    sum de = 2.4801268282588636e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190882692809677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1387e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.433642121263933 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.91s (niter = 3) global walltime = 792.28s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.353340686964807, dt = 0.0023190882692809677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 273.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7447066039853594e-22,-2.3702486164036228e-23,-1.7584268677732516e-17)
    sum a = (-8.723986729205344e-22,1.1849070099118712e-22,-9.992949848691515e-17)
    sum e = 3.1607920454658087e-09
    sum de = 2.4578776969560904e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.88e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190832715910877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1585e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.612512847274292 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.355659775234088, dt = 0.0023190832715910877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.2%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 307.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7245940151897815e-22,-2.3429695028277156e-23,-1.7815532575258695e-17)
    sum a = (-8.618926359269094e-22,1.1741215611084584e-22,-9.949233581343188e-17)
    sum e = 3.160792612888194e-09
    sum de = 2.434689748107405e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319078377180083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1421e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.463879351578566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.357978858505679, dt = 0.002319078377180083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 269.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.704728031922428e-22,-2.315861820365932e-23,-1.8045756191643893e-17)
    sum a = (-8.525680530971912e-22,1.1553175759878508e-22,-9.903342202043157e-17)
    sum e = 3.160793174823055e-09
    sum de = 2.4105838815701467e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319073578636865 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0943e+04 | 9216 |      1 | 2.978e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.031016591956018 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 793.16s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.360297936882859, dt = 0.002319073578636865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.3%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 276.81 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.97 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6850651252046423e-22,-2.2892882371518732e-23,-1.827488985551889e-17)
    sum a = (-8.423612844338001e-22,1.1388181977618257e-22,-9.855341247547668e-17)
    sum e = 3.1607937310599886e-09
    sum de = 2.38558113673899e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190688678351203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9005e+04 | 9216 |      1 | 3.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.27507171926201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.362617010461496, dt = 0.0023190688678351203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 313.16 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.665648273851043e-22,-2.2630716003654245e-23,-1.8502885417475588e-17)
    sum a = (-8.329784964495575e-22,1.124227495379067e-22,-9.805296241914739e-17)
    sum e = 3.1607942813934894e-09
    sum de = 2.359702688272126e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.89e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190642360705685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7267e+04 | 9216 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.700724593151072 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.61s (niter = 2) global walltime = 793.82s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.364936079329331, dt = 0.0023190642360705685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 293.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6464400006873877e-22,-2.2371626153088147e-23,-1.8729696246755055e-17)
    sum a = (-8.233669458571589e-22,1.1230927737990082e-22,-9.753272814563423e-17)
    sum e = 3.1607948256229705e-09
    sum de = 2.3329698228937945e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190596742174033 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.616523143342384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.3672551435654015, dt = 0.0023190596742174033 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.53 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 275.60 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.90 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (50.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6274570086938585e-22,-2.2111345747544635e-23,-1.8955277235140466e-17)
    sum a = (-8.135740512950068e-22,1.1087671872135199e-22,-9.69933623902486e-17)
    sum e = 3.1607953635527983e-09
    sum de = 2.30540394039811e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319055172900087 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.47751786124053 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 794.40s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.369574203239619, dt = 0.002319055172900087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.62 us    (3.0%)
   patch tree reduce : 3.56 us    (1.1%)
   gen split merge   : 2.23 us    (0.7%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 291.53 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6087032370449646e-22,-2.1855847367816143e-23,-1.9179584783315242e-17)
    sum a = (-8.042589334873919e-22,1.0924083456400853e-22,-9.643552188955254e-17)
    sum e = 3.1607958949923094e-09
    sum de = 2.277026543401817e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190507226761295 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1543e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.574268268012172 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 794.69s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.371893258412519, dt = 0.0023190507226761295 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.51 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 298.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (53.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5901603982880955e-22,-2.1604402596716862e-23,-1.940257681858988e-17)
    sum a = (-7.947357810519024e-22,1.0834529184783004e-22,-9.585985536928615e-17)
    sum e = 3.1607964197558426e-09
    sum de = 2.2478592243186104e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.90e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319046314225424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.596453278267965 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 794.99s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.374212309135195, dt = 0.002319046314225424 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 279.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5718401999139719e-22,-2.1354168186500352e-23,-1.9624212762923138e-17)
    sum a = (-7.856796144535162e-22,1.0651996778183758e-22,-9.52670174639909e-17)
    sum e = 3.1607969376627496e-09
    sum de = 2.2179236526292315e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190419385413024 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.673685506589532 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 795.28s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.37653135544942, dt = 0.0023190419385413024 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 270.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.553725608843989e-22,-2.1109276969417242e-23,-1.9844453562408595e-17)
    sum a = (-7.763630552161227e-22,1.059527007947765e-22,-9.465765523863334e-17)
    sum e = 3.160797448537411e-09
    sum de = 2.1872415685115778e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319037587118436 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.074e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.157893135716446 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 795.59s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.378850397387962, dt = 0.002319037587118436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 310.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.535828706680413e-22,-2.0864222903778995e-23,-2.0063261654594936e-17)
    sum a = (-7.68302057238504e-22,1.04110940027996e-22,-9.403241445155802e-17)
    sum e = 3.1607979522092673e-09
    sum de = 2.155834772530047e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.91e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190332521328804 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.941670975631194 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 795.89s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.38116943497508, dt = 0.0023190332521328804 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 295.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.518105304247742e-22,-2.0624897146100486e-23,-2.0280600971983877e-17)
    sum a = (-7.580615470146854e-22,1.0311175768549201e-22,-9.339193867676019e-17)
    sum e = 3.1607984485128087e-09
    sum de = 2.123725109469088e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190289266094575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1189e+04 | 9216 |      1 | 2.955e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.25353352330058 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 796.18s (max_walltime = 796.31s)  [SPH][rank=0]
---------------- t = 4.383488468227212, dt = 0.0023190289266094575 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 316.39 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5006446821660013e-22,-2.0386876377519217e-23,-2.0496436937015977e-17)
    sum a = (-7.502775665329627e-22,1.0225353589696972e-22,-9.273686810107317e-17)
    sum e = 3.1607989372876023e-09
    sum de = 2.090934468439472e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319024604572523 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1501e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53603010765212 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 796.47s > 796.31s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 25):
   -> walltime = 796.474068407 >= 796.3137462560001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000025.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (55.7%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000025.sham              [Shamrock Dump][rank=0]
              - took 1.53 ms, bandwidth = 2.28 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 796.474068407 -> 826.474068407

[Simulation] Evolve until next trigger(s) :
   -> t = 4.4 (current = 4.385807497153822)
   -> iter = None (current = 1927)
   -> walltime = 826.474068407 (current = 796.478384717)

Info: evolve_until (target_time = 4.40s, niter_max = -1, max_walltime = 826.47s)      [SPH][rank=0]
---------------- t = 4.385807497153822, dt = 0.002319024604572523 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.20 us    (1.2%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 336.78 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1856553819444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4833355752602221e-22,-2.0150794387006532e-23,-2.0710736452134127e-17)
    sum a = (-7.4213580887593315e-22,1.0078906387309046e-22,-9.206783723325894e-17)
    sum e = 3.1607994183782946e-09
    sum de = 2.0574847671328455e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319020281175829 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.6283e+04 | 9216 |      1 | 3.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.808690674395546 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.37s (niter = 21) global walltime = 796.83s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.3881265217583945, dt = 0.002319020281175829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.9%)
   patch tree reduce : 2.52 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 318.92 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4662195099119643e-22,-1.9918847429400627e-23,-2.0923467884416912e-17)
    sum a = (-7.334909405107619e-22,9.931686562054883e-23,-9.138547735855393e-17)
    sum e = 3.1607998916346166e-09
    sum de = 2.023397941193292e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.92e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319015952808906 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1176e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.241110428399505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.39044554203957, dt = 0.002319015952808906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.59 us    (2.3%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.64 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 304.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185221354166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4493095360122004e-22,-1.9690313689484138e-23,-2.1134601061090932e-17)
    sum a = (-7.240519466681076e-22,9.799289503876189e-23,-9.069041813134987e-17)
    sum e = 3.160800356911391e-09
    sum de = 1.9886959434505046e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190116171764082 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.33412692636327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.392764557992379, dt = 0.0023190116171764082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 337.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4326284743652106e-22,-1.946446034875895e-23,-2.134410726761347e-17)
    sum a = (-7.165473064748479e-22,9.766821848277859e-23,-8.998328072653632e-17)
    sum e = 3.160800814068534e-09
    sum de = 1.9534007200744106e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.93e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190072733478943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1529e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.560865751285316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.395083569609556, dt = 0.0023190072733478943 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 333.35 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.416099257992605e-22,-1.9238309919453447e-23,-2.155195922003996e-17)
    sum a = (-7.07970395471932e-22,9.581395716381723e-23,-8.926467996863974e-17)
    sum e = 3.1608012629710457e-09
    sum de = 1.9175342134683033e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190029217794185 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1635e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.656960439748396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.397402576882904, dt = 0.0023190029217794185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1.37 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 281.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3997805343807942e-22,-1.9018305922776273e-23,-2.1758131053458435e-17)
    sum a = (-7.00772056905963e-22,9.554725139247831e-23,-8.853523057945556e-17)
    sum e = 3.1608017034890224e-09
    sum de = 1.8811183543799463e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318998564303264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.412570569309597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.399721579804683, dt = 0.00027842019531743034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.87 us    (2.1%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 1.27 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 350.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3979127714861854e-22,-1.8992023486370925e-23,-2.1781935252198027e-17)
    sum a = (-6.996973103581375e-22,9.435307028388914e-23,-8.845113376498902e-17)
    sum e = 3.1608017516275873e-09
    sum de = 1.8764453889392817e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318998038932779 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2302e+04 | 9216 |      1 | 2.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.513055216409745 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 1935                                                    [SPH][rank=0]
Info: time since start : 798.5851213770001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 44):
   -> t = 4.4 >= 4.4
--------------------------------
tfinal = 15.069268212509447
14.450000000000138
14.475000000000138
14.500000000000139
14.525000000000139
14.55000000000014
14.57500000000014
14.60000000000014
14.62500000000014
14.65000000000014
14.675000000000141
14.700000000000141
14.725000000000142
14.750000000000142
14.775000000000142
14.800000000000143
14.825000000000143
14.850000000000144
14.875000000000144
14.900000000000144
14.925000000000145
14.950000000000145
14.975000000000145
15.000000000000146
15.025000000000146
15.050000000000146
tfinal = 15.069268212509447
14.450000000000138
14.475000000000138
14.500000000000139
14.525000000000139
14.55000000000014
14.57500000000014
14.60000000000014
14.62500000000014
14.65000000000014
14.675000000000141
14.700000000000141
14.725000000000142
14.750000000000142
14.775000000000142
14.800000000000143
14.825000000000143
14.850000000000144
14.875000000000144
14.900000000000144
14.925000000000145
14.950000000000145
14.975000000000145
15.000000000000146
15.025000000000146
15.050000000000146
tfinal = 15.069268212509447
14.450000000000138
14.475000000000138
14.500000000000139
14.525000000000139
14.55000000000014
14.57500000000014
14.60000000000014
14.62500000000014
14.65000000000014
14.675000000000141
14.700000000000141
14.725000000000142
14.750000000000142
14.775000000000142
14.800000000000143
14.825000000000143
14.850000000000144
14.875000000000144
14.900000000000144
14.925000000000145
14.950000000000145
14.975000000000145
15.000000000000146
15.025000000000146
15.050000000000146
tfinal = 15.069268212509447
14.450000000000138
14.475000000000138
14.500000000000139
14.525000000000139
14.55000000000014
14.57500000000014
14.60000000000014
14.62500000000014
14.65000000000014
14.675000000000141
14.700000000000141
14.725000000000142
14.750000000000142
14.775000000000142
14.800000000000143
14.825000000000143
14.850000000000144
14.875000000000144
14.900000000000144
14.925000000000145
14.950000000000145
14.975000000000145
15.000000000000146
15.025000000000146
15.050000000000146
tfinal = 15.069268212509447
14.450000000000138
14.475000000000138
14.500000000000139
14.525000000000139
14.55000000000014
14.57500000000014
14.60000000000014
14.62500000000014
14.65000000000014
14.675000000000141
14.700000000000141
14.725000000000142
14.750000000000142
14.775000000000142
14.800000000000143
14.825000000000143
14.850000000000144
14.875000000000144
14.900000000000144
14.925000000000145
14.950000000000145
14.975000000000145
15.000000000000146
15.025000000000146
15.050000000000146
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[4.24737345e-15 6.23949502e-15 2.36286442e-14 ... 1.66200820e-14
 2.22363590e-17 2.72840661e-21]
(9216, 3)
[[4.24737345e-15 6.23949502e-15 2.36286442e-14 1.46519988e-17
  4.44744395e-22]
 [4.64080728e-06 5.04871223e-14 2.66420255e-13 1.37328591e-14
  0.00000000e+00]
 [8.21485741e-15 3.70124939e-14 2.31427667e-14 9.56306585e-17
  1.63136352e-21]
 ...
 [4.25881582e-05 5.31054092e-05 5.55672027e-05 2.43532889e-06
  5.76716649e-14]
 [3.10637311e-05 3.07094531e-05 1.06258277e-05 5.50040341e-13
  5.30646654e-15]
 [7.89440373e-15 1.24239585e-14 1.66200820e-14 2.22363590e-17
  2.72840661e-21]]
compute original rho
0.0006783796144593017 0.0
0.0011322353705019272 0.0
0.0020196324000345592 0.0
0.004072273874517161 0.0
0.010305349730621163 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.4 -> 4.5

[Simulation] Evolve until next trigger(s) :
   -> t = 4.5 (current = 4.4)
   -> iter = None (current = 1934)
   -> walltime = 826.474068407 (current = 804.5535843450001)

Info: evolve_until (target_time = 4.50s, niter_max = -1, max_walltime = 826.47s)      [SPH][rank=0]
---------------- t = 4.4, dt = 0.002318998038932779 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.84 us    (1.7%)
   patch tree reduce : 2.37 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.2%)
   LB compute        : 427.24 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 5.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3816891382266375e-22,-1.877341030438086e-23,-2.1987041550690725e-17)
    sum a = (-6.903870163888045e-22,9.443835891365769e-23,-8.770602373235467e-17)
    sum e = 3.1608021867229744e-09
    sum de = 1.839703191626036e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.94e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318993679827947 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1545e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.575527213627755 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.27s (niter = 18) global walltime = 804.85s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.4023189980389335, dt = 0.002318993679827947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 313.04 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.365786866784746e-22,-1.8554337185255345e-23,-2.2189567311105593e-17)
    sum a = (-6.828587268442236e-22,9.238947046441857e-23,-8.695559019894722e-17)
    sum e = 3.1608026090886864e-09
    sum de = 1.8021959425292945e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189893222699317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7832e+04 | 9216 |      1 | 3.311e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.211977981674337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4046379917187615, dt = 0.0023189893222699317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.82 us    (2.3%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.81 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 302.72 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 8.55 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (63.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185438368055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3500387733127583e-22,-1.8342449208461193e-23,-2.239034627086946e-17)
    sum a = (-6.7489826914382435e-22,9.197958917868247e-23,-8.619615101154389e-17)
    sum e = 3.1608030226670134e-09
    sum de = 1.7642066736829268e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189849723951406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1160e+04 | 9216 |      1 | 2.958e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.226006367203425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.406956981041032, dt = 0.0023189849723951406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 311.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3344796501844134e-22,-1.8129643558052282e-23,-2.2589353284254697e-17)
    sum a = (-6.668414403092827e-22,9.011599432682282e-23,-8.542831696206119e-17)
    sum e = 3.160803427379022e-09
    sum de = 1.7257580189648637e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.95e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189806373567147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.73330401399591 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.409275966013427, dt = 0.0023189806373567147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.3%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 292.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3191100695703104e-22,-1.7922740067438997e-23,-2.278656959929364e-17)
    sum a = (-6.6007314186463445e-22,8.908604461067876e-23,-8.465266300055777e-17)
    sum e = 3.1608038231208397e-09
    sum de = 1.6868716772760796e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189763248235833 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1504e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53784341433163 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4115949466507836, dt = 0.0023189763248235833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 288.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.303881110884224e-22,-1.7717355029569552e-23,-2.2981977757369008e-17)
    sum a = (-6.517625817772532e-22,8.859344038516358e-23,-8.38697620366483e-17)
    sum e = 3.1608042097935196e-09
    sum de = 1.6475692748844114e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.96e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189720431963006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1685e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.701806550609252 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.413913922975607, dt = 0.0023189720431963006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 298.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.288862534926125e-22,-1.7512449734740916e-23,-2.3175561626300204e-17)
    sum a = (-6.445975237342481e-22,8.857433346321894e-23,-8.308017779177231e-17)
    sum e = 3.1608045873031295e-09
    sum de = 1.6078723638482239e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189678014298013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1623e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.645394079841683 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.416232895018803, dt = 0.0023189678014298013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1.57 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 354.68 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2739988631544592e-22,-1.7307077900808375e-23,-2.336730637169464e-17)
    sum a = (-6.370588261864034e-22,8.70660048379985e-23,-8.228446197611762e-17)
    sum e = 3.1608049555607175e-09
    sum de = 1.5678024038674248e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189636088491476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8666e+04 | 9216 |      1 | 3.215e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.96699425889009 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.418551862820233, dt = 0.0023189636088491476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.8%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 303.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2593126522947693e-22,-1.7106831395050336e-23,-2.3557198424934232e-17)
    sum a = (-6.30836749303885e-22,8.587031270388e-23,-8.148316527939698e-17)
    sum e = 3.1608053144823114e-09
    sum de = 1.527380767774138e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318959474960813 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1735e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.74678942611498 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.420870826429082, dt = 0.002318959474960813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 298.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.244756038075782e-22,-1.6909197068142932e-23,-2.374522549424579e-17)
    sum a = (-6.220527301493337e-22,8.455725545102537e-23,-8.067682236909836e-17)
    sum e = 3.1608056639888734e-09
    sum de = 1.4866287210427588e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189554092641 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1593e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61810173345593 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.423189785904043, dt = 0.0023189554092641 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 260.94 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2304323633103242e-22,-1.671470087690613e-23,-2.3931376509515744e-17)
    sum a = (-6.159654951714526e-22,8.311834542374419e-23,-7.986596198257957e-17)
    sum e = 3.1608060040062937e-09
    sum de = 1.445567421178943e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189514210671816 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1055e+04 | 9216 |      1 | 2.968e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.130642346445164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.425508741313307, dt = 0.0023189514210671816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.58 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 261.67 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2162192054967444e-22,-1.6523571689579587e-23,-2.411564162110176e-17)
    sum a = (-6.079787770412096e-22,8.214733670652487e-23,-7.905110675713801e-17)
    sum e = 3.1608063344653566e-09
    sum de = 1.404217906420463e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318947519311993 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.024e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.60954972777696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4278276927343745, dt = 0.002318947519311993 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 297.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2022135475515948e-22,-1.6334231635703394e-23,-2.4298012184084302e-17)
    sum a = (-6.005927621174142e-22,8.141827665403344e-23,-7.823276709382434e-17)
    sum e = 3.1608066553017113e-09
    sum de = 1.3626010856698508e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231894371241277 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1622e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.644431245170402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.430146640253686, dt = 0.00231894371241277 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 318.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1883711562862501e-22,-1.6146253787984355e-23,-2.4478480724021135e-17)
    sum a = (-5.942582812203689e-22,8.116388712992277e-23,-7.741144635486409e-17)
    sum e = 3.1608069664558375e-09
    sum de = 1.3207377417414835e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318940008109944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1577e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.603238399652287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.432465583966099, dt = 0.002318940008109944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.0%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 274.11 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1746646115250754e-22,-1.5958346361262135e-23,-2.465704092581474e-17)
    sum a = (-5.85657914523873e-22,7.989955928129056e-23,-7.658763410040754e-17)
    sum e = 3.160807267873027e-09
    sum de = 1.278648513979879e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318936413344698 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1470e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50637803922169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.434784523974209, dt = 0.002318936413344698 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 336.69 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.16118295181592e-22,-1.5774490342512974e-23,-2.4833687593698344e-17)
    sum a = (-5.8072443074994815e-22,7.950052420447418e-23,-7.576181467372071e-17)
    sum e = 3.160807559503333e-09
    sum de = 1.2363538982975062e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189329341552645 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1601e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.62553176344476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.437103460387554, dt = 0.0023189329341552645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 324.09 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.4%)
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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1477740678056611e-22,-1.559059251129695e-23,-2.5008416649612372e-17)
    sum a = (-5.73875327512438e-22,7.807361903157596e-23,-7.493446256953037e-17)
    sum e = 3.160807841301553e-09
    sum de = 1.1938742332768234e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318929575597403 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.714916469657066 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.43942239332171, dt = 0.002318929575597403 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 318.74 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1345457476325503e-22,-1.54112522389686e-23,-2.518122510395499e-17)
    sum a = (-5.670318480517204e-22,7.675793584576976e-23,-7.410603839695553e-17)
    sum e = 3.160808113227173e-09
    sum de = 1.1512296941736698e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318926341690129 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1671e+04 | 9216 |      1 | 2.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.68877689738504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4417413228973075, dt = 0.002318926341690129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 302.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1214761607875745e-22,-1.5234737609137487e-23,-2.5352111019844553e-17)
    sum a = (-5.60602156866652e-22,7.643974929985628e-23,-7.327699753265909e-17)
    sum e = 3.160808375244341e-09
    sum de = 1.1084402932151746e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318923235387333 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1341e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.389942643973207 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.86s (niter = 13) global walltime = 810.20s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.444060249238998, dt = 0.002318923235387333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 264.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1085505188614027e-22,-1.505785546972924e-23,-2.5521073509748175e-17)
    sum a = (-5.551993490584641e-22,7.551402210883558e-23,-7.244778068906443e-17)
    sum e = 3.16080862732183e-09
    sum de = 1.0655258743618747e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189202585749673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9449e+04 | 9216 |      1 | 3.129e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.676102460185323 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.446379172474385, dt = 0.0023189202585749673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 304.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.095738804904142e-22,-1.488381217675513e-23,-2.5688112690894262e-17)
    sum a = (-5.485687687760418e-22,7.427242566282787e-23,-7.161882013730047e-17)
    sum e = 3.1608088694329885e-09
    sum de = 1.0225060975545341e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189174120934516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0861e+04 | 9216 |      1 | 2.986e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.954613047722454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.44869809273296, dt = 0.0023189174120934516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.2%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 272.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0830948249586719e-22,-1.471306986800676e-23,-2.585322967323601e-17)
    sum a = (-5.422102479112085e-22,7.361199912419399e-23,-7.079054306434664e-17)
    sum e = 3.1608091015557035e-09
    sum de = 9.794004357877798e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318914695783174 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1650e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.66962833954065 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.451017010145054, dt = 0.002318914695783174 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 272.00 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.5%)
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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0705945698663904e-22,-1.4543119795472568e-23,-2.601642655085344e-17)
    sum a = (-5.352178390455062e-22,7.238887828689775e-23,-6.996335387746875e-17)
    sum e = 3.160809323672354e-09
    sum de = 9.36228169772855e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318912108551734 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1579e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60517047717275 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.453335924840837, dt = 0.002318912108551734 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 323.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.1854383680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0582643374682962e-22,-1.4376681970154567e-23,-2.6177706328776637e-17)
    sum a = (-5.296861454085523e-22,7.166652775992715e-23,-6.913765717094873e-17)
    sum e = 3.160809535769764e-09
    sum de = 8.930083880479468e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318909648460194 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9310e+04 | 9216 |      1 | 3.144e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.549612640915687 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.455654836949389, dt = 0.002318909648460194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 293.53 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (63.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.046045854389524e-22,-1.42112960584765e-23,-2.633707294996744e-17)
    sum a = (-5.225523553884615e-22,7.089591024160776e-23,-6.831384387928773e-17)
    sum e = 3.1608097378391636e-09
    sum de = 8.497599734897623e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318907312825305 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9064e+04 | 9216 |      1 | 3.171e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.3272670008033 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.457973746597849, dt = 0.002318907312825305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 262.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.1852213541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.034010906033703e-22,-1.4047820316337062e-23,-2.6494531247796275e-17)
    sum a = (-5.176418541670444e-22,7.059279708999709e-23,-6.749229171398789e-17)
    sum e = 3.1608099298761345e-09
    sum de = 8.065016020688518e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189050983346777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.986e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.95708033579729 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.460292653910675, dt = 0.0023189050983346777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 264.17 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1852213541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0220635657992332e-22,-1.3884443603724396e-23,-2.6650086915503643e-17)
    sum a = (-5.109155706496213e-22,6.823465043192908e-23,-6.667337101904067e-17)
    sum e = 3.1608101118805623e-09
    sum de = 7.632517336691239e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189030011712343 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1496e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52999478909111 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.46261155900901, dt = 0.0023189030011712343 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.34 us    (2.8%)
   patch tree reduce : 2.64 us    (0.9%)
   gen split merge   : 1.80 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 276.59 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.1852213541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0102944126932689e-22,-1.372896064472355e-23,-2.6803746496000085e-17)
    sum a = (-5.050274334349876e-22,6.847059928274466e-23,-6.585743581374572e-17)
    sum e = 3.1608102838565852e-09
    sum de = 7.200286013584859e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189010171434446 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1408e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.450258273016523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.464930462010181, dt = 0.0023189010171434446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 322.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.1852213541666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.986515552437814e-23,-1.3569919224727356e-23,-2.6955517333552982e-17)
    sum a = (-4.995538525249999e-22,6.843354353415457e-23,-6.504483495205339e-17)
    sum e = 3.160810445812545e-09
    sum de = 6.768502337718577e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188991418177205 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.43648697939279 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4672493630273244, dt = 0.0023188991418177205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.59 us    (0.8%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 290.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.871307241778388e-23,-1.3411287126775155e-23,-2.7105407575066222e-17)
    sum a = (-4.93988440434508e-22,6.716797891676577e-23,-6.423590551919224e-17)
    sum e = 3.1608105977609364e-09
    sum de = 6.337344216558927e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188973706493978 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1507e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.539777462184716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.469568262169142, dt = 0.0023188973706493978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 294.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.757406120872356e-23,-1.3256970515534072e-23,-2.7253426134571526e-17)
    sum a = (-4.878603634791299e-22,6.72022832950037e-23,-6.343096841975401e-17)
    sum e = 3.160810739718351e-09
    sum de = 5.906987145845766e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318895699108792 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1585e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61007089502969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.471887159539792, dt = 0.002318895699108792 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 323.84 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.64498186030892e-23,-1.3101029820053926e-23,-2.7399582651205808e-17)
    sum a = (-4.824958338840236e-22,6.587244741441166e-23,-6.263033956643244e-17)
    sum e = 3.1608108717054197e-09
    sum de = 5.477604290537706e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188941227993845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46102209452744 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 2.98s (niter = 10) global walltime = 814.09s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.4742060552389, dt = 0.0023188941227993845 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 296.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.533723507374016e-23,-1.2949853545139597e-23,-2.754388749008595e-17)
    sum a = (-4.762860883782445e-22,6.456281988416759e-23,-6.183431998755891e-17)
    sum e = 3.160810993746758e-09
    sum de = 5.0493663850931344e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188926375677958 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1300e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.35208924548412 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.4765249493617, dt = 0.0023188926375677958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 268.27 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.423994170332474e-23,-1.2801641554059984e-23,-2.7686351696933457e-17)
    sum a = (-4.713650218066488e-22,6.48790431697128e-23,-6.104320389826859e-17)
    sum e = 3.16081110587092e-09
    sum de = 4.622441738466363e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318891239595888 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9714e+04 | 9216 |      1 | 3.102e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.915347401108697 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.478843841999268, dt = 0.002318891239595888 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 343.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (60.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.315257109149191e-23,-1.2650815183473585e-23,-2.782698699103457e-17)
    sum a = (-4.655914507512098e-22,6.362414843366967e-23,-6.025726624858936e-17)
    sum e = 3.160811208110322e-09
    sum de = 4.1969960861406805e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231888992548018 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.957e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.234953288162263 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.481162733238864, dt = 0.00231888992548018 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 290.64 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.207968519844163e-23,-1.2504790644607563e-23,-2.7965805706706094e-17)
    sum a = (-4.605340326248577e-22,6.178989217944438e-23,-5.947677964150086e-17)
    sum e = 3.1608113005011953e-09
    sum de = 3.773192641479794e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188886922949794 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8171e+04 | 9216 |      1 | 3.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.517656227091827 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.4834816231643435, dt = 0.0023188886922949794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 289.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.101766174415017e-23,-1.2363614151241079e-23,-2.810282080718377e-17)
    sum a = (-4.548834518403575e-22,6.213326963631256e-23,-5.870200049050367e-17)
    sum e = 3.160811383083534e-09
    sum de = 3.351192001575799e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188875376370637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1298e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.350539756428923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.485800511856638, dt = 0.0023188875376370637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.69 us    (0.9%)
   gen split merge   : 1.31 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 263.27 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185112847222222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.9969343976364e-23,-1.2219134472992704e-23,-2.823804583122554e-17)
    sum a = (-4.494522280596263e-22,6.103893587333755e-23,-5.793317684307076e-17)
    sum e = 3.160811455901012e-09
    sum de = 2.931152131384689e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318886459652237 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.5141e+04 | 9216 |      1 | 3.666e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.772997551927055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.488119399394275, dt = 0.002318886459652237 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 294.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.893335648498906e-23,-1.2078888857177879e-23,-2.8371494882788244e-17)
    sum a = (-4.445863748505185e-22,5.998299145657982e-23,-5.717054234891302e-17)
    sum e = 3.16081151900094e-09
    sum de = 2.5132283518218896e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188854570437762 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8261e+04 | 9216 |      1 | 3.261e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.599254253654347 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.490438285853927, dt = 0.0023188854570437762 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 341.63 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.790809499169161e-23,-1.1941000144100233e-23,-2.8503182590564204e-17)
    sum a = (-4.3964675344659e-22,5.973124437034186e-23,-5.641432442225257e-17)
    sum e = 3.160811572434206e-09
    sum de = 2.0975732297261565e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318884529063362 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1469e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.504814501563775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.492757171310971, dt = 0.002318884529063362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 297.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.689426370643983e-23,-1.1802768128663111e-23,-2.863312410329818e-17)
    sum a = (-4.340121923385373e-22,5.948905803474972e-23,-5.566473664664538e-17)
    sum e = 3.160811616255192e-09
    sum de = 1.684336669508233e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188836754854947 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1430e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.469966893022548 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.495076055840034, dt = 0.0023188836754854947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 335.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.589436917658911e-23,-1.1665092879232062e-23,-2.876133504861643e-17)
    sum a = (-4.301847605465069e-22,5.858195252099248e-23,-5.49219802658113e-17)
    sum e = 3.160811650521729e-09
    sum de = 1.2736658065748221e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318882896567083 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1609e+04 | 9216 |      1 | 2.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.631991485522775 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.11s (niter = 7) global walltime = 817.19s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.4973949395155195, dt = 0.002318882896567083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 289.41 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.49013164867103e-23,-1.1530329097888118e-23,-2.8887831506639726e-17)
    sum a = (-4.237011730916568e-22,5.760868758105487e-23,-5.4186249256529525e-17)
    sum e = 3.160811675295023e-09
    sum de = 8.657049394468404e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188821929938123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1399e+04 | 9216 |      1 | 2.935e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.441806001978964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.499713822412087, dt = 0.0002861775879132722 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 305.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.4%)
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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.478754696504207e-23,-1.1515023534361432e-23,-2.890248535959274e-17)
    sum a = (-4.242646378950539e-22,5.704105088376051e-23,-5.410014750143008e-17)
    sum e = 3.1608116730304036e-09
    sum de = 8.169224943366838e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318882149281694 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2154e+04 | 9216 |      1 | 2.866e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5944853477219416 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 1979                                                    [SPH][rank=0]
Info: time since start : 817.76628757 (s)                                             [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 45):
   -> t = 4.5 >= 4.5
--------------------------------
tfinal = 15.697154388030672
15.075000000000147
15.100000000000147
15.125000000000147
15.150000000000148
15.175000000000148
15.200000000000149
15.225000000000149
15.25000000000015
15.27500000000015
15.30000000000015
15.32500000000015
15.35000000000015
15.375000000000151
15.400000000000151
15.425000000000152
15.450000000000152
15.475000000000152
15.500000000000153
15.525000000000153
15.550000000000153
15.575000000000154
15.600000000000154
15.625000000000155
15.650000000000155
15.675000000000155
tfinal = 15.697154388030672
15.075000000000147
15.100000000000147
15.125000000000147
15.150000000000148
15.175000000000148
15.200000000000149
15.225000000000149
15.25000000000015
15.27500000000015
15.30000000000015
15.32500000000015
15.35000000000015
15.375000000000151
15.400000000000151
15.425000000000152
15.450000000000152
15.475000000000152
15.500000000000153
15.525000000000153
15.550000000000153
15.575000000000154
15.600000000000154
15.625000000000155
15.650000000000155
15.675000000000155
tfinal = 15.697154388030672
15.075000000000147
15.100000000000147
15.125000000000147
15.150000000000148
15.175000000000148
15.200000000000149
15.225000000000149
15.25000000000015
15.27500000000015
15.30000000000015
15.32500000000015
15.35000000000015
15.375000000000151
15.400000000000151
15.425000000000152
15.450000000000152
15.475000000000152
15.500000000000153
15.525000000000153
15.550000000000153
15.575000000000154
15.600000000000154
15.625000000000155
15.650000000000155
15.675000000000155
tfinal = 15.697154388030672
15.075000000000147
15.100000000000147
15.125000000000147
15.150000000000148
15.175000000000148
15.200000000000149
15.225000000000149
15.25000000000015
15.27500000000015
15.30000000000015
15.32500000000015
15.35000000000015
15.375000000000151
15.400000000000151
15.425000000000152
15.450000000000152
15.475000000000152
15.500000000000153
15.525000000000153
15.550000000000153
15.575000000000154
15.600000000000154
15.625000000000155
15.650000000000155
15.675000000000155
tfinal = 15.697154388030672
15.075000000000147
15.100000000000147
15.125000000000147
15.150000000000148
15.175000000000148
15.200000000000149
15.225000000000149
15.25000000000015
15.27500000000015
15.30000000000015
15.32500000000015
15.35000000000015
15.375000000000151
15.400000000000151
15.425000000000152
15.450000000000152
15.475000000000152
15.500000000000153
15.525000000000153
15.550000000000153
15.575000000000154
15.600000000000154
15.625000000000155
15.650000000000155
15.675000000000155
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.47927690e-15 6.83486778e-15 1.64335556e-14 ... 1.20480531e-14
 3.97540308e-18 2.58494853e-21]
(9216, 3)
[[3.47927690e-15 6.83486778e-15 1.64335556e-14 1.71389517e-17
  1.21549789e-21]
 [4.39431046e-06 5.37409846e-14 2.50311251e-13 1.36522364e-14
  2.56504078e-22]
 [8.46561972e-15 3.84612821e-14 2.23512112e-14 9.39628784e-17
  2.05590198e-21]
 ...
 [4.25923180e-05 5.30110052e-05 5.43421224e-05 1.03602021e-12
  5.12416641e-14]
 [3.09096389e-05 3.00746122e-05 8.95432274e-06 3.70616593e-13
  7.77260921e-15]
 [8.30836952e-15 1.31670105e-14 1.20480531e-14 3.97540308e-18
  2.58494853e-21]]
compute original rho
0.000679353034372019 0.0
0.0011361909030079915 0.0
0.0020349143299296336 0.0
0.00413240234644061 0.0
0.01059908078324624 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.5 -> 4.6

[Simulation] Evolve until next trigger(s) :
   -> t = 4.6 (current = 4.5)
   -> iter = None (current = 1978)
   -> walltime = 826.474068407 (current = 823.978740384)

Info: evolve_until (target_time = 4.60s, niter_max = -1, max_walltime = 826.47s)      [SPH][rank=0]
---------------- t = 4.5, dt = 0.002318882149281694 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.1%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 314.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.380365120540546e-23,-1.1382799310215158e-23,-2.902792490578313e-17)
    sum a = (-4.194521120861129e-22,5.708204938292624e-23,-5.336827546252072e-17)
    sum e = 3.160811691916053e-09
    sum de = 4.107378659503657e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188814924548465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.032e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.528866423260276 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 824.28s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.502318882149281, dt = 0.0023188814924548465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.62 us    (0.5%)
   LB compute        : 327.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 5.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.283662127450622e-23,-1.1250401234232994e-23,-2.9150831049577574e-17)
    sum a = (-4.1336498163939895e-22,5.63495777632375e-23,-5.2648072603012235e-17)
    sum e = 3.1608116967310663e-09
    sum de = 9.02916266872045e-17
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318880953358965 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.027e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.581525615955933 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 824.59s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.504637763641736, dt = 0.002318880953358965 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.83 us    (2.3%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 313.43 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 5.57 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.188511257143644e-23,-1.1120562521353855e-23,-2.927208062980397e-17)
    sum a = (-4.0949116991866875e-22,5.58918974006666e-23,-5.193540106611587e-17)
    sum e = 3.1608116922828347e-09
    sum de = -3.895688229397676e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318880493120549 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1079e+04 | 9216 |      1 | 2.965e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.151503981685302 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 824.88s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.506956644595095, dt = 0.002318880493120549 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1.70 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 275.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.094000117579613e-23,-1.0991553455843451e-23,-2.939168631792517e-17)
    sum a = (-4.040614018719811e-22,5.456201750695155e-23,-5.123043296670723e-17)
    sum e = 3.1608116786276615e-09
    sum de = -7.848915864600019e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318880114071518 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1255e+04 | 9216 |      1 | 2.949e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.311019746322632 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 825.18s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.509275525088216, dt = 0.002318880114071518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 265.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.000936129500146e-23,-1.086651657468469e-23,-2.9509666181857415e-17)
    sum a = (-3.9986552522395425e-22,5.401323933253885e-23,-5.05333068438593e-17)
    sum e = 3.1608116558433996e-09
    sum de = -1.1768097780140291e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188798179356574 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1387e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.430465780990048 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 825.47s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.511594405202287, dt = 0.0023188798179356574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.80 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 274.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.908699148002037e-23,-1.0741915423443726e-23,-2.962603857120535e-17)
    sum a = (-3.947619164253313e-22,5.429122071582886e-23,-4.9844147577594866e-17)
    sum e = 3.1608116240105068e-09
    sum de = -1.565196703644927e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188796063947684 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.988e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.936002973436953 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 825.77s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.513913285020223, dt = 0.0023188796063947684 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.60 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 327.90 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.817747349695814e-23,-1.0615674783370644e-23,-2.97408221098293e-17)
    sum a = (-3.9025541496100605e-22,5.219864649118226e-23,-4.9163076049177246e-17)
    sum e = 3.1608115832123344e-09
    sum de = -1.9499286783425257e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188794810081385 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1285e+04 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3382556642144 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 826.07s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.516232164626618, dt = 0.0023188794810081385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 319.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.74 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.727773963114102e-23,-1.0497103429982033e-23,-2.985403569668479e-17)
    sum a = (-3.859030793629756e-22,5.266743824173901e-23,-4.849019679605426e-17)
    sum e = 3.1608115335350676e-09
    sum de = -2.3308849509715134e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188794431420723 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1297e+04 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34935143830498 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 826.36s (max_walltime = 826.47s)  [SPH][rank=0]
---------------- t = 4.5185510441076255, dt = 0.0023188794431420723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 326.39 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.638789331340806e-23,-1.0374403645655097e-23,-2.996569845420839e-17)
    sum a = (-3.817035144152405e-22,5.187477097403773e-23,-4.782561141324241e-17)
    sum e = 3.160811475067665e-09
    sum de = -2.7079478286153805e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318879493907631 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.448098176952225 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 826.66s > 826.47s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 26):
   -> walltime = 826.655166828 >= 826.474068407
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000026.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (50.8%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000026.sham              [Shamrock Dump][rank=0]
              - took 1.48 ms, bandwidth = 2.35 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 826.655166828 -> 856.655166828

[Simulation] Evolve until next trigger(s) :
   -> t = 4.6 (current = 4.520869923550768)
   -> iter = None (current = 1987)
   -> walltime = 856.655166828 (current = 826.65946391)

Info: evolve_until (target_time = 4.60s, niter_max = -1, max_walltime = 856.66s)      [SPH][rank=0]
---------------- t = 4.520869923550768, dt = 0.002318879493907631 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.7%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 293.44 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.550767486633351e-23,-1.0255053259989211e-23,-3.0075829737053215e-17)
    sum a = (-3.7745511690752594e-22,5.156928303935866e-23,-4.716940136353514e-17)
    sum e = 3.160811407901768e-09
    sum de = -3.0810025696007596e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188796341082176 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1124e+04 | 9216 |      1 | 2.961e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.192675666063685 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.41s (niter = 25) global walltime = 826.96s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.523188803044675, dt = 0.0023188796341082176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 278.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.463737697718539e-23,-1.0135834913692356e-23,-3.018444906527588e-17)
    sum a = (-3.724336376967675e-22,5.030089855619503e-23,-4.6521650655189677e-17)
    sum e = 3.1608113321316493e-09
    sum de = -3.449937450323905e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188798641982406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7947e+04 | 9216 |      1 | 3.298e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.31458833387273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.525507682678784, dt = 0.0023188798641982406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 271.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.377955240709828e-23,-1.0020689981930063e-23,-3.0291576156340684e-17)
    sum a = (-3.6905306234003174e-22,4.9727158614149294e-23,-4.588242382500039e-17)
    sum e = 3.160811247854133e-09
    sum de = -3.814643913482344e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318880184253313 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1221e+04 | 9216 |      1 | 2.952e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.280778690739453 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.527826562542982, dt = 0.002318880184253313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.1%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 318.03 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.292766300664904e-23,-9.905989582710172e-24,-3.0397230854509316e-17)
    sum a = (-3.6460941931766113e-22,4.97183616287287e-23,-4.525178065362435e-17)
    sum e = 3.1608111551685275e-09
    sum de = -4.1750162653120796e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188805939524625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.942e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.373518913447874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.530145442727235, dt = 0.0023188805939524625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 289.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.208734245558295e-23,-9.790741220108808e-24,-3.05014331376849e-17)
    sum a = (-3.601690772795163e-22,4.830344714348948e-23,-4.462977349604459e-17)
    sum e = 3.160811054176551e-09
    sum de = -4.530951963644879e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188810925725517 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.45777208510448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.532464323321188, dt = 0.0023188810925725517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1.77 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 274.21 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 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.185329861111111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.125725055430435e-23,-9.680347504975432e-24,-3.060420309537026e-17)
    sum a = (-3.570737047592284e-22,4.8742910061823554e-23,-4.4016440065424923e-17)
    sum e = 3.1608109449822673e-09
    sum de = -4.882351507372532e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188816789944107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1266e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.3210701350495 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.534783204413761, dt = 0.0023188816789944107 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 301.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.185546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.043297718788767e-23,-9.566820055483754e-24,-3.0705560888163704e-17)
    sum a = (-3.529110272098879e-22,4.7831944734719355e-23,-4.3411812732286176e-17)
    sum e = 3.1608108276920107e-09
    sum de = -5.229118485230618e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188823517202284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9009e+04 | 9216 |      1 | 3.177e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.276460366527477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.537102086092755, dt = 0.0023188823517202284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 317.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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.185546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.961938580642547e-23,-9.456919287328089e-24,-3.0805526744997214e-17)
    sum a = (-3.4796071831936447e-22,4.805337076789278e-23,-4.281591406724884e-17)
    sum e = 3.1608107024143166e-09
    sum de = -5.571159547755006e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318883108900867 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1349e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.39670595170892 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.5394209684444755, dt = 0.002318883108900867 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.54 us    (2.6%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1.45 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 267.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.185546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.881820612565207e-23,-9.345268997532781e-24,-3.0904120935443395e-17)
    sum a = (-3.4335381191817296e-22,4.667766468558186e-23,-4.22287620923972e-17)
    sum e = 3.1608105692598407e-09
    sum de = -5.908384422740554e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318883948372126 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1336e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38500018210961 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.541739851553376, dt = 0.002318883948372126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 295.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185546875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.802737613075444e-23,-9.238598792606041e-24,-3.1001363765638754e-17)
    sum a = (-3.406190950314368e-22,4.614808200952386e-23,-4.1650361639527114e-17)
    sum e = 3.1608104283413048e-09
    sum de = -6.240705972432444e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318884867698264 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50258835205667 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.544058735501748, dt = 0.002318884867698264 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.7%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 1.53 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 365.90 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.724070757663738e-23,-9.132252084133425e-24,-3.109727553726566e-17)
    sum a = (-3.36304364245706e-22,4.578796498656493e-23,-4.108071043130276e-17)
    sum e = 3.160810279773411e-09
    sum de = -6.568040007349262e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188858642214463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1243e+04 | 9216 |      1 | 2.950e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.300339493175805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.546377620369446, dt = 0.0023188858642214463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 271.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.1858723958333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.646584994408004e-23,-9.026444536417678e-24,-3.119187653819737e-17)
    sum a = (-3.3344804570206207e-22,4.5534479106886064e-23,-4.0519797490987717e-17)
    sum e = 3.1608101236727763e-09
    sum de = -6.890305468459065e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188869351152626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.73013707321337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.548696506233668, dt = 0.0023188869351152626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 315.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186089409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.569588216948909e-23,-8.921145340272696e-24,-3.1285187020569597e-17)
    sum a = (-3.2902973333231174e-22,4.446295528245193e-23,-3.9967607742582085e-17)
    sum e = 3.160809960157869e-09
    sum de = -7.207424352064698e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188880774403877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7627e+04 | 9216 |      1 | 3.336e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.024819021932977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.551015393168783, dt = 0.0023188880774403877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.74 us    (2.3%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 319.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186089409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.493807081947346e-23,-8.819334184126247e-24,-3.1377227196888614e-17)
    sum a = (-3.2430191077860323e-22,4.343421035677976e-23,-3.9424113985991265e-17)
    sum e = 3.160809789348917e-09
    sum de = -7.51932182138605e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318889288200726 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1285e+04 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.338204981107953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.553334281246224, dt = 0.002318889288200726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.83 us    (2.0%)
   patch tree reduce : 2.46 us    (0.6%)
   gen split merge   : 1.77 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.4%)
   LB compute        : 367.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.82 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186089409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.419152902960451e-23,-8.719791904470957e-24,-3.146801720189724e-17)
    sum a = (-3.207983143417426e-22,4.3921157864430613e-23,-3.888928441748221e-17)
    sum e = 3.1608096113678603e-09
    sum de = -7.825926038019768e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188905643983806 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1303e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.354717005478463 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.555653170534425, dt = 0.0023188905643983806 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.2%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 302.60 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 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.186089409722222
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.345173885280529e-23,-8.617373367226972e-24,-3.155757709146014e-17)
    sum a = (-3.1699754569963153e-22,4.3049658417024324e-23,-3.836307990298024e-17)
    sum e = 3.1608094263382626e-09
    sum de = -8.127168195821244e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.18e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188919030858834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1381e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.425225663744015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.557972061098823, dt = 0.0023188919030858834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1.49 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 311.68 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.272100437606534e-23,-8.518526494915238e-24,-3.164592682142219e-17)
    sum a = (-3.137542395712671e-22,4.180962622491659e-23,-3.784545037312143e-17)
    sum e = 3.1608092343852455e-09
    sum de = -8.422982641286065e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.17e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188933014141578 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.938e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41472685558725 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.56029095300191, dt = 0.0023188933014141578 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 293.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.199722837407325e-23,-8.423070833731415e-24,-3.1733086219223256e-17)
    sum a = (-3.1080341054825594e-22,4.1914679910359784e-23,-3.733634328385997e-17)
    sum e = 3.160809035635427e-09
    sum de = -8.71330673138258e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188947566751463 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1545e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.573766356224308 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.562609846303324, dt = 0.0023188947566751463 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 309.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.127996851494278e-23,-8.325665391198254e-24,-3.18190749874897e-17)
    sum a = (-3.0655791240501965e-22,4.143037958574646e-23,-3.6835698104927067e-17)
    sum e = 3.1608088302168296e-09
    sum de = -8.998080801637649e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.16e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188962663380553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.34290397023198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.564928741059998, dt = 0.0023188962663380553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.48 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 309.59 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.0573978215959e-23,-8.230229535919787e-24,-3.190391267847375e-17)
    sum a = (-3.0313209595914205e-22,4.081139621636172e-23,-3.634345056457979e-17)
    sum e = 3.1608086182588324e-09
    sum de = -9.277248262644876e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318897828080857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1438e+04 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.477147909651464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.567247637326337, dt = 0.002318897828080857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.4%)
   LB compute        : 319.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.987506082584288e-23,-8.13631433404131e-24,-3.1987618691594255e-17)
    sum a = (-2.9890613083989757e-22,4.153815369481469e-23,-3.585952242631203e-17)
    sum e = 3.16080839989209e-09
    sum de = -9.55075555422804e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.15e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318899439807972 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1309e+04 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.360556671318545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.569566535154418, dt = 0.002318899439807972 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1.56 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 291.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.5%)
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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.918679681215131e-23,-8.039117953842445e-24,-3.207021222807899e-17)
    sum a = (-2.9570333769093565e-22,3.9877246564089036e-23,-3.538383619300736e-17)
    sum e = 3.1608081752484617e-09
    sum de = -9.8185520905252e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189010996646046 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1459e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.496524971806977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5718854345942255, dt = 0.0023189010996646046 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 300.48 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.850480026717636e-23,-7.948567555218074e-24,-3.215171231049653e-17)
    sum a = (-2.924031346981282e-22,3.939238149609109e-23,-3.4916304684204523e-17)
    sum e = 3.160807944460953e-09
    sum de = -1.0080590260700271e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.14e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189028060445144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.527124822519966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.57420433569389, dt = 0.0023189028060445144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1.20 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 346.04 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.783058964366185e-23,-7.857753077855642e-24,-3.2232137747794497e-17)
    sum a = (-2.88811499911639e-22,3.93386102510869e-23,-3.4456837303839086e-17)
    sum e = 3.1608077076636307e-09
    sum de = -1.0336825486118399e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189045575883 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.46708585674508 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.576523238499935, dt = 0.0023189045575883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 265.85 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.716508041456639e-23,-7.766601900102186e-24,-3.2311507134766924e-17)
    sum a = (-2.8616631121874536e-22,4.0160402652775926e-23,-3.4005335206546186e-17)
    sum e = 3.160807464991558e-09
    sum de = -1.0587216141738832e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189063531754038 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1529e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55984472429996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.578842143057524, dt = 0.0023189063531754038 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 2.68 us    (0.9%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 271.00 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.650446104343733e-23,-7.67251504704397e-24,-3.238983882731013e-17)
    sum a = (-2.83491267324186e-22,3.901036766935273e-23,-3.3561698323121066e-17)
    sum e = 3.1608072165807385e-09
    sum de = -1.083172357198757e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.13e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189081919100006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.968e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.123980215014676 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.37s (niter = 18) global walltime = 834.42s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.581161049410699, dt = 0.0023189081919100006 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 262.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.585022137448855e-23,-7.583447890665031e-24,-3.24671509484184e-17)
    sum a = (-2.7993453714489976e-22,3.8206219991137356e-23,-3.312581838201833e-17)
    sum e = 3.160806962568034e-09
    sum de = -1.1070311907310105e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318910073101863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1527e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.558173945609564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.583479957602609, dt = 0.002318910073101863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.4%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 277.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.520520025415419e-23,-7.495769348317054e-24,-3.25434613594962e-17)
    sum a = (-2.760559907124618e-22,3.771681909573122e-23,-3.2697579625280443e-17)
    sum e = 3.1608067030911038e-09
    sum de = -1.1302948294330648e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189119962429886 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1457e+04 | 9216 |      1 | 2.930e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.49465940675721 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.585798867675711, dt = 0.0023189119962429886 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 272.54 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
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.1865234374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.456954072508404e-23,-7.408839029060244e-24,-3.261878764548069e-17)
    sum a = (-2.72345492985644e-22,3.673664368285803e-23,-3.2276868195297874e-17)
    sum e = 3.1608064382883336e-09
    sum de = -1.1529602722807485e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189139609812036 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8917e+04 | 9216 |      1 | 3.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.193423491407923 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.588117779671954, dt = 0.0023189139609812036 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.394227889988415e-23,-7.324853187732796e-24,-3.269314712939902e-17)
    sum a = (-2.7003209832088843e-22,3.641477942789405e-23,-3.186355875037217e-17)
    sum e = 3.1608061682987786e-09
    sum de = -1.1750248051788099e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189159670918905 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.511610271554932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.5904366936329355, dt = 0.0023189159670918905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.56 us    (0.5%)
   LB compute        : 291.99 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.331879560129468e-23,-7.24079472475238e-24,-3.2766556830092655e-17)
    sum a = (-2.6625196083018826e-22,3.603326116141257e-23,-3.145752634745596e-17)
    sum e = 3.160805893262081e-09
    sum de = -1.1964860031908876e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318918014448981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0655e+04 | 9216 |      1 | 3.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.767940303253784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.592755609600028, dt = 0.002318918014448981 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 334.83 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.1865234374999996
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.2705780824013106e-23,-7.157662738011323e-24,-3.28390334771455e-17)
    sum a = (-2.633595284187866e-22,3.5486281473238864e-23,-3.1058639482595455e-17)
    sum e = 3.1608056133184204e-09
    sum de = -1.217341721124375e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189201029962933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1394e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.437443045619293 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.595074527614477, dt = 0.0023189201029962933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 295.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186306423611111
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.209843713763135e-23,-7.07606680926331e-24,-3.291059348754487e-17)
    sum a = (-2.6086408227332523e-22,3.4498876217206254e-23,-3.066676402089521e-17)
    sum e = 3.160805328608436e-09
    sum de = -1.2375900894510754e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318922232720356 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1394e+04 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.437891699728354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.597393447717473, dt = 0.002318922232720356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 307.60 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.1496348618136973e-23,-6.997146878394299e-24,-3.298125296458665e-17)
    sum a = (-2.571942482708563e-22,3.4642832964536865e-23,-3.0281761443717534e-17)
    sum e = 3.160805039273174e-09
    sum de = -1.2572295183234645e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189244036254672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1424e+04 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.464442785254647 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.599712369950193, dt = 0.0002876300498062534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 307.20 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.142667804506849e-23,-6.986999652884372e-24,-3.2989516513550936e-17)
    sum a = (-2.567974028469096e-22,3.5038707486498106e-23,-3.023667313695547e-17)
    sum e = 3.1608050008234443e-09
    sum de = -1.2593233825917412e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231892469747119 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.983e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4711508008729433 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2023                                                    [SPH][rank=0]
Info: time since start : 837.099824883 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 46):
   -> t = 4.6 >= 4.6
--------------------------------
tfinal = 16.325040563551894
15.700000000000156
15.725000000000156
15.750000000000156
15.775000000000157
15.800000000000157
15.825000000000157
15.850000000000158
15.875000000000158
15.900000000000158
15.925000000000159
15.95000000000016
15.97500000000016
16.00000000000016
16.02500000000016
16.050000000000157
16.075000000000156
16.100000000000154
16.125000000000153
16.15000000000015
16.17500000000015
16.20000000000015
16.225000000000147
16.250000000000146
16.275000000000144
16.300000000000143
16.32500000000014
tfinal = 16.325040563551894
15.700000000000156
15.725000000000156
15.750000000000156
15.775000000000157
15.800000000000157
15.825000000000157
15.850000000000158
15.875000000000158
15.900000000000158
15.925000000000159
15.95000000000016
15.97500000000016
16.00000000000016
16.02500000000016
16.050000000000157
16.075000000000156
16.100000000000154
16.125000000000153
16.15000000000015
16.17500000000015
16.20000000000015
16.225000000000147
16.250000000000146
16.275000000000144
16.300000000000143
16.32500000000014
tfinal = 16.325040563551894
15.700000000000156
15.725000000000156
15.750000000000156
15.775000000000157
15.800000000000157
15.825000000000157
15.850000000000158
15.875000000000158
15.900000000000158
15.925000000000159
15.95000000000016
15.97500000000016
16.00000000000016
16.02500000000016
16.050000000000157
16.075000000000156
16.100000000000154
16.125000000000153
16.15000000000015
16.17500000000015
16.20000000000015
16.225000000000147
16.250000000000146
16.275000000000144
16.300000000000143
16.32500000000014
tfinal = 16.325040563551894
15.700000000000156
15.725000000000156
15.750000000000156
15.775000000000157
15.800000000000157
15.825000000000157
15.850000000000158
15.875000000000158
15.900000000000158
15.925000000000159
15.95000000000016
15.97500000000016
16.00000000000016
16.02500000000016
16.050000000000157
16.075000000000156
16.100000000000154
16.125000000000153
16.15000000000015
16.17500000000015
16.20000000000015
16.225000000000147
16.250000000000146
16.275000000000144
16.300000000000143
16.32500000000014
tfinal = 16.325040563551894
15.700000000000156
15.725000000000156
15.750000000000156
15.775000000000157
15.800000000000157
15.825000000000157
15.850000000000158
15.875000000000158
15.900000000000158
15.925000000000159
15.95000000000016
15.97500000000016
16.00000000000016
16.02500000000016
16.050000000000157
16.075000000000156
16.100000000000154
16.125000000000153
16.15000000000015
16.17500000000015
16.20000000000015
16.225000000000147
16.250000000000146
16.275000000000144
16.300000000000143
16.32500000000014
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.74327937e-15 7.21544979e-15 1.57761209e-14 ... 1.14982954e-14
 2.89293756e-18 2.96929562e-21]
(9216, 3)
[[3.74327937e-15 7.21544979e-15 1.57761209e-14 1.84337151e-17
  8.80380077e-22]
 [4.14917777e-06 5.45657849e-14 2.42702523e-13 9.76355611e-15
  0.00000000e+00]
 [8.37973108e-15 3.82587457e-14 1.91425949e-14 6.22059053e-18
  1.98819308e-21]
 ...
 [4.25941305e-05 5.29064150e-05 5.30622649e-05 1.05604962e-12
  2.30224126e-14]
 [3.07525966e-05 2.94374536e-05 7.33575065e-06 3.33713836e-13
  9.61776187e-15]
 [8.36432677e-15 1.33202078e-14 1.14982954e-14 2.89293756e-18
  2.96929562e-21]]
compute original rho
0.0006803672594706573 0.0
0.0011403038764462939 0.0
0.002050772145476241 0.0
0.004195031947314943 0.0
0.01090823633139634 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.6 -> 4.699999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 4.699999999999999 (current = 4.6)
   -> iter = None (current = 2022)
   -> walltime = 856.655166828 (current = 843.4068615880001)

Info: evolve_until (target_time = 4.70s, niter_max = -1, max_walltime = 856.66s)      [SPH][rank=0]
---------------- t = 4.6, dt = 0.00231892469747119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.02 us    (2.5%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 333.20 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.0831242109117056e-23,-6.905692010092073e-24,-3.305962659725238e-17)
    sum a = (-2.5355566248539623e-22,3.4813002002358034e-23,-2.9857004956248175e-17)
    sum e = 3.1608047087766125e-09
    sum de = -1.2785847609402638e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189268918151554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7265e+04 | 9216 |      1 | 3.380e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.697858513935238 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.05s (niter = 9) global walltime = 843.75s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.602318924697471, dt = 0.0023189268918151554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.75 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.4%)
   LB compute        : 360.64 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
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.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (5.024700091100319e-23,-6.825181004826256e-24,-3.3128422598121486e-17)
    sum a = (-2.5178532593955417e-22,3.4392610520388177e-23,-2.948613703821381e-17)
    sum e = 3.1608044100488356e-09
    sum de = -1.2969226826134328e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318929150724055 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8097e+04 | 9216 |      1 | 3.280e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.45103859567104 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.6046378515892865, dt = 0.002318929150724055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.55 us    (0.5%)
   LB compute        : 305.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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.1863064236111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.966519803990406e-23,-6.745928774878519e-24,-3.3196368853012726e-17)
    sum a = (-2.475469964337281e-22,3.405176739415931e-23,-2.9121670627343336e-17)
    sum e = 3.1608041071754086e-09
    sum de = -1.3146524991574363e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189314501794412 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1511e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.543841228695012 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.606956780740011, dt = 0.0023189314501794412 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 308.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.9096070948231787e-23,-6.667319136526726e-24,-3.3263477424977935e-17)
    sum a = (-2.453658689059137e-22,3.3459568348323235e-23,-2.8763470782359276e-17)
    sum e = 3.1608038002607675e-09
    sum de = -1.3317696622955958e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318933790629594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1384e+04 | 9216 |      1 | 2.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.428331523816478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.60927571219019, dt = 0.002318933790629594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 299.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.69 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.852962645640696e-23,-6.590390799473912e-24,-3.332976268894517e-17)
    sum a = (-2.428045604228523e-22,3.309804744428129e-23,-2.8411379057460227e-17)
    sum e = 3.160803489447494e-09
    sum de = -1.3482739892298217e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318936171914265 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.32343413057463 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.611594645980819, dt = 0.002318936171914265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 314.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.796952865692016e-23,-6.514129261234697e-24,-3.3395238624872e-17)
    sum a = (-2.3960463472885446e-22,3.319051310146164e-23,-2.8065237054029055e-17)
    sum e = 3.1608031748777107e-09
    sum de = -1.3641655166505825e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189385938296642 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1521e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55239015602118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.613913582152733, dt = 0.0023189385938296642 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 321.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 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.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.741757768650249e-23,-6.4370710854690025e-24,-3.345991884554974e-17)
    sum a = (-2.371869113573162e-22,3.254983346308918e-23,-2.7724887232664005e-17)
    sum e = 3.1608028566935027e-09
    sum de = -1.3794445483374846e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189410561285707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1487e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.52190402063922 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.616232520746563, dt = 0.0023189410561285707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.5%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 270.95 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 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.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.6870417544524437e-23,-6.362299391443672e-24,-3.3523816599671135e-17)
    sum a = (-2.3438319729829365e-22,3.1799649587291166e-23,-2.7390164330932213e-17)
    sum e = 3.1608025350368574e-09
    sum de = -1.3941116453320267e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189435585302086 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.006e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.76914085286385 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.618551461802692, dt = 0.0023189435585302086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.0%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 308.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 5.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1865234375
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.633005963070757e-23,-6.28943786695697e-24,-3.3586944743493627e-17)
    sum a = (-2.326599217842299e-22,3.1826536791514874e-23,-2.706090463860283e-17)
    sum e = 3.160802210049601e-09
    sum de = -1.4081676139367965e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318946100732688 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1352e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40004520871966 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.620870405361222, dt = 0.002318946100732688 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 262.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.5792558168574036e-23,-6.215619057044803e-24,-3.364931575551442e-17)
    sum a = (-2.2867556560342004e-22,3.0995689239930604e-23,-2.6736939580089134e-17)
    sum e = 3.1608018818733426e-09
    sum de = -1.4216135034166436e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318948682427871 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1620e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.642910435738482 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.42s (niter = 8) global walltime = 846.43s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.623189351461955, dt = 0.002318948682427871 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.67 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 310.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.526691384177937e-23,-6.144689708658234e-24,-3.371094171757455e-17)
    sum a = (-2.2648247860975578e-22,3.1609097659581097e-23,-2.6418101845157493e-17)
    sum e = 3.1608015506494234e-09
    sum de = -1.434450616126269e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189513033176476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1545e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.574971743889037 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.625508300144382, dt = 0.0023189513033176476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.7%)
   patch tree reduce : 20.66 us   (5.5%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 334.33 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.474422059488251e-23,-6.0706860436294265e-24,-3.377183432510844e-17)
    sum a = (-2.233076866096527e-22,3.066127409277632e-23,-2.6104221445481365e-17)
    sum e = 3.1608012165188544e-09
    sum de = -1.446680495714367e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231895396313148 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.636251233146357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6278272514477, dt = 0.00231895396313148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 294.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.4230081298442626e-23,-6.0005643360500886e-24,-3.3832004876119714e-17)
    sum a = (-2.218115375158972e-22,2.941393145847765e-23,-2.5795124588644778e-17)
    sum e = 3.1608008796222517e-09
    sum de = -1.4583049135320651e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189566616438123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.723076255584864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.630146205410831, dt = 0.0023189566616438123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 304.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.371743624752892e-23,-5.9338448428794156e-24,-3.3891464261454315e-17)
    sum a = (-2.187475661582207e-22,3.043866988331632e-23,-2.5490641991924175e-17)
    sum e = 3.1608005400998097e-09
    sum de = -1.4693258746004397e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318959398690706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1263e+04 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.319488382339735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.632465162072475, dt = 0.002318959398690706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 317.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.3213743465835434e-23,-5.862055037938003e-24,-3.395022298434559e-17)
    sum a = (-2.154149034871935e-22,2.95018801313681e-23,-2.5190595054018763e-17)
    sum e = 3.1608001980912213e-09
    sum de = -1.479745618937301e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231896217418883 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1552e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.5810214035198 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.634784121471166, dt = 0.00231896217418883 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 268.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.84 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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.271805447056129e-23,-5.794763374168202e-24,-3.400829112298887e-17)
    sum a = (-2.1327074038073894e-22,2.889970963743212e-23,-2.489480894707964e-17)
    sum e = 3.1607998537356337e-09
    sum de = -1.489566606442952e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189649881454697 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1491e+04 | 9216 |      1 | 2.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.526209538854765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.637103083645355, dt = 0.0023189649881454697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 317.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.2225994357279306e-23,-5.72840918991851e-24,-3.4065678355036955e-17)
    sum a = (-2.1088580788617116e-22,2.870332322010305e-23,-2.4603110830441612e-17)
    sum e = 3.1607995071716e-09
    sum de = -1.498791524043336e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189678406680897 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1432e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.472257636457705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.6394220486335005, dt = 0.0023189678406680897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 273.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.173965374933246e-23,-5.6621188246971825e-24,-3.41223939588677e-17)
    sum a = (-2.0841341471421427e-22,2.808383933898508e-23,-2.4315320090909013e-17)
    sum e = 3.1607991585370253e-09
    sum de = -1.507423275632233e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318970731972887 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.648328244242013 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.79s (niter = 6) global walltime = 848.77s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.641741016474168, dt = 0.002318970731972887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.2%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.62 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 294.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (62.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.12592879228342e-23,-5.597738629014484e-24,-3.417844678584584e-17)
    sum a = (-2.0679325204440998e-22,2.769892573514541e-23,-2.4031263866892808e-17)
    sum e = 3.1607988079691144e-09
    sum de = -1.5154649852073944e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189736623878436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1574e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.601028703440473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.644059987206141, dt = 0.0023189736623878436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 268.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.078156288371654e-23,-5.5339350052432144e-24,-3.4233845294692835e-17)
    sum a = (-2.0368442581274605e-22,2.7444356169853435e-23,-2.3750761105999176e-17)
    sum e = 3.160798455604324e-09
    sum de = -1.5229199806633735e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189766323520626 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.677503923110315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.646378960868529, dt = 0.0023189766323520626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 319.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (4.031288034072125e-23,-5.47063973304271e-24,-3.428859751546654e-17)
    sum a = (-2.0246686438305e-22,2.7077090177848617e-23,-2.3473638749213823e-17)
    sum e = 3.160798101578315e-09
    sum de = -1.52979180285698e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318979642410711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1616e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.639544125066234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.648697937500881, dt = 0.002318979642410711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 334.09 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.984475236307589e-23,-5.4082379272393046e-24,-3.434271108574878e-17)
    sum a = (-1.999053325333893e-22,2.699710251612359e-23,-2.319971812936591e-17)
    sum e = 3.1607977460259044e-09
    sum de = -1.5360841887575807e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318982693206398 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.451507108921334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.651016917143291, dt = 0.002318982693206398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1.41 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 267.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.9384181438651324e-23,-5.34574369387758e-24,-3.439619322240876e-17)
    sum a = (-1.9748259166582794e-22,2.5977110493978497e-23,-2.2928819920449963e-17)
    sum e = 3.160797389081018e-09
    sum de = -1.5418010815183135e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231898578546651 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1744e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.755067920639444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.653335899836498, dt = 0.00231898578546651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.5%)
   LB compute        : 268.23 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (57.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8929019727044676e-23,-5.286684684766775e-24,-3.444905072578867e-17)
    sum a = (-1.9510780639677007e-22,2.5891369354289012e-23,-2.266076884535093e-17)
    sum e = 3.1607970308766434e-09
    sum de = -1.546946613525394e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189889199873 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.631493890032605 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.48s (niter = 5) global walltime = 850.52s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.655654885621964, dt = 0.0023189889199873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 268.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.8479335448596604e-23,-5.226760817788826e-24,-3.450128999421264e-17)
    sum a = (-1.9279372842827973e-22,2.6414700378846483e-23,-2.2395387418117766e-17)
    sum e = 3.160796671544789e-09
    sum de = -1.5515251097048578e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318992097615216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1181e+04 | 9216 |      1 | 2.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.24531891911478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.657973874541952, dt = 0.002318992097615216 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 265.20 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.803494374819047e-23,-5.164871764868487e-24,-3.455291701242449e-17)
    sum a = (-1.8967719109746447e-22,2.5829878620131912e-23,-2.2132501622538778e-17)
    sum e = 3.1607963112164427e-09
    sum de = -1.5555410879106065e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189953192259655 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1355e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.40304815041675 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.660292866639567, dt = 0.0023189953192259655 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.0%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1.66 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 327.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.759866806766736e-23,-5.105594890798784e-24,-3.460393736493471e-17)
    sum a = (-1.8795058709097306e-22,2.523113894913455e-23,-2.1871936423027526e-17)
    sum e = 3.1607959500215162e-09
    sum de = -1.5589992440875883e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002318998585702156 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7547e+04 | 9216 |      1 | 3.346e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.95339364825056 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.662611861958793, dt = 0.002318998585702156 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 276.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.185872395833334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.716480650694134e-23,-5.0477902556937605e-24,-3.465435622993893e-17)
    sum a = (-1.8581386550329142e-22,2.492813473000333e-23,-2.1613514864310193e-17)
    sum e = 3.1607955880888138e-09
    sum de = -1.5619044527790893e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190018979103847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1585e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61169875350285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.664930860544495, dt = 0.0023190018979103847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.3%)
   LB compute        : 355.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
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.1860894097222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.673635415903323e-23,-4.990322320979763e-24,-3.4704178372238445e-17)
    sum a = (-1.8325604946154082e-22,2.445102697493588e-23,-2.1357066676807586e-17)
    sum e = 3.1607952255459895e-09
    sum de = -1.5642617672557414e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319005256678966 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9548e+04 | 9216 |      1 | 3.119e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.76655986837273 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.89s (niter = 3) global walltime = 852.05s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.6672498624424055, dt = 0.002319005256678966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 337.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.6314395947425233e-23,-4.934183582580664e-24,-3.4753408170310427e-17)
    sum a = (-1.8067492186918805e-22,2.4247798855175938e-23,-2.1102420260236734e-17)
    sum e = 3.160794862519507e-09
    sum de = -1.5660764013491596e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190086627755823 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.450378309853008 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.669568867699084, dt = 0.0023190086627755823 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.8%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 327.04 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1863064236111116
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.589843452382733e-23,-4.878205492080551e-24,-3.4802049602454866e-17)
    sum a = (-1.7905346411323916e-22,2.403731696012094e-23,-2.0849402985666378e-17)
    sum e = 3.160794499134599e-09
    sum de = -1.5673537417933985e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319012116887546 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1579e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.60614416039326 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.671887876361859, dt = 0.002319012116887546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 270.19 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.54850302626763e-23,-4.822718147901998e-24,-3.4850106245912044e-17)
    sum a = (-1.7730450694189913e-22,2.342051787950657e-23,-2.059784704008557e-17)
    sum e = 3.1607941355152348e-09
    sum de = -1.5680993389888572e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319015619603899 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59150376689712 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.89s (niter = 3) global walltime = 852.93s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.674206888478747, dt = 0.002319015619603899 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 264.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.507593708692409e-23,-4.76912116735672e-24,-3.4897581294233466e-17)
    sum a = (-1.7555640362514549e-22,2.3878803560059854e-23,-2.0347581453940304e-17)
    sum e = 3.160793771784071e-09
    sum de = -1.5683189014016122e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190191714003495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.740805736107706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.676525904098352, dt = 0.0023190191714003495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.64 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 262.73 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.4670787486993564e-23,-4.713211297197272e-24,-3.4944477540933144e-17)
    sum a = (-1.7270388121336112e-22,2.2853108124877734e-23,-2.009844047385664e-17)
    sum e = 3.1607934080624265e-09
    sum de = -1.5680182882030823e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319022772627647 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1635e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.657033790924288 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.678844923269752, dt = 0.002319022772627647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 299.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.427360646298397e-23,-4.661315423856325e-24,-3.499079740078887e-17)
    sum a = (-1.7165566467575787e-22,2.260303477518324e-23,-1.9850258256465908e-17)
    sum e = 3.160793044470247e-09
    sum de = -1.5672035074524592e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190264235037317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1698e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.713800563885883 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.59s (niter = 2) global walltime = 853.80s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.681163946042379, dt = 0.0023190264235037317 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 259.26 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.3876781945270765e-23,-4.609258902616393e-24,-3.503654290403029e-17)
    sum a = (-1.6952480893704536e-22,2.2532181349433863e-23,-1.9602873971999194e-17)
    sum e = 3.160792681126062e-09
    sum de = -1.565880714346506e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319030124109799 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.946e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.339228501481365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.683482972465883, dt = 0.002319030124109799 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.2%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 295.37 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.348611486346664e-23,-4.557191378095707e-24,-3.5081715713917715e-17)
    sum a = (-1.6742250781221357e-22,2.2772712516518805e-23,-1.9356125629332008e-17)
    sum e = 3.1607923181469634e-09
    sum de = -1.5640562046353797e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319033874390937 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.36899230717802 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 854.39s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.685802002589992, dt = 0.002319033874390937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 318.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.310026061666364e-23,-4.504052134029731e-24,-3.51263171165344e-17)
    sum a = (-1.65904774682934e-22,2.2661919932458155e-23,-1.910985314005469e-17)
    sum e = 3.1607919556485596e-09
    sum de = -1.5617364079720456e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190376741602163 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1780e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.788612369418757 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 854.68s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.688121036464383, dt = 0.0023190376741602163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 264.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2717291430073946e-23,-4.451614899275763e-24,-3.5170348028826657e-17)
    sum a = (-1.6375518695906847e-22,2.1780238461666558e-23,-1.886389981239661e-17)
    sum e = 3.1607915937449647e-09
    sum de = -1.5589278884512268e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190415231069874 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1801e+04 | 9216 |      1 | 2.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.80761365978222 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 854.98s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.690440074138544, dt = 0.0023190415231069874 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.50 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 270.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.2340059354068584e-23,-4.402159553605714e-24,-3.521380900816676e-17)
    sum a = (-1.6151101283319856e-22,2.2535317421989326e-23,-1.8618106876080622e-17)
    sum e = 3.160791232548742e-09
    sum de = -1.5556373366305208e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319045420809193 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1897e+04 | 9216 |      1 | 2.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.894285175110245 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 855.26s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.692759115661651, dt = 0.002319045420809193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 322.35 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1968047234452195e-23,-4.3490269115081895e-24,-3.525670024182065e-17)
    sum a = (-1.6014385630003232e-22,2.1727565894245498e-23,-1.837232706257655e-17)
    sum e = 3.1607908721709005e-09
    sum de = -1.5518715687648624e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190493667484165 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1570e+04 | 9216 |      1 | 2.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59874588272688 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 855.56s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.69507816108246, dt = 0.0023190493667484165 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 267.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.159831059329542e-23,-4.299536355339732e-24,-3.529902158788892e-17)
    sum a = (-1.5759016978954813e-22,2.1043417520178384e-23,-1.8126407168884388e-17)
    sum e = 3.160790512720847e-09
    sum de = -1.5476375198372687e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319053360327755 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1134e+04 | 9216 |      1 | 2.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.203419226917028 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 855.85s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.697397210449208, dt = 0.002319053360327755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 324.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1235789903656106e-23,-4.2515004328867514e-24,-3.534077254325756e-17)
    sum a = (-1.5564537072573525e-22,2.178643275856616e-23,-1.7880198531136922e-17)
    sum e = 3.1607901543063724e-09
    sum de = -1.5429422348775085e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319057400891742 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1636e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.658250733952297 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 856.14s (max_walltime = 856.66s)  [SPH][rank=0]
---------------- t = 4.6997162638095356, dt = 0.00028373619046373477 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.27 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 297.00 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.1193904815143754e-23,-4.2444693364859235e-24,-3.5345560317212854e-17)
    sum a = (-1.5542928389700597e-22,2.1496043388194617e-23,-1.7851452637046633e-17)
    sum e = 3.1607901110619478e-09
    sum de = -1.542111921256274e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190579232504143 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2523e+04 | 9216 |      1 | 2.834e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6047127349640977 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 856.43s (max_walltime = 856.66s)  [SPH][rank=0]
Info: iteration since start : 2067                                                    [SPH][rank=0]
Info: time since start : 856.4287674230001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 47):
   -> t = 4.699999999999999 >= 4.699999999999999
--------------------------------
tfinal = 16.95292673907312
16.35000000000014
16.37500000000014
16.400000000000137
16.425000000000136
16.450000000000134
16.475000000000133
16.50000000000013
16.52500000000013
16.55000000000013
16.575000000000127
16.600000000000126
16.625000000000124
16.650000000000123
16.67500000000012
16.70000000000012
16.72500000000012
16.750000000000117
16.775000000000116
16.800000000000114
16.825000000000113
16.85000000000011
16.87500000000011
16.90000000000011
16.925000000000107
16.950000000000106
tfinal = 16.95292673907312
16.35000000000014
16.37500000000014
16.400000000000137
16.425000000000136
16.450000000000134
16.475000000000133
16.50000000000013
16.52500000000013
16.55000000000013
16.575000000000127
16.600000000000126
16.625000000000124
16.650000000000123
16.67500000000012
16.70000000000012
16.72500000000012
16.750000000000117
16.775000000000116
16.800000000000114
16.825000000000113
16.85000000000011
16.87500000000011
16.90000000000011
16.925000000000107
16.950000000000106
tfinal = 16.95292673907312
16.35000000000014
16.37500000000014
16.400000000000137
16.425000000000136
16.450000000000134
16.475000000000133
16.50000000000013
16.52500000000013
16.55000000000013
16.575000000000127
16.600000000000126
16.625000000000124
16.650000000000123
16.67500000000012
16.70000000000012
16.72500000000012
16.750000000000117
16.775000000000116
16.800000000000114
16.825000000000113
16.85000000000011
16.87500000000011
16.90000000000011
16.925000000000107
16.950000000000106
tfinal = 16.95292673907312
16.35000000000014
16.37500000000014
16.400000000000137
16.425000000000136
16.450000000000134
16.475000000000133
16.50000000000013
16.52500000000013
16.55000000000013
16.575000000000127
16.600000000000126
16.625000000000124
16.650000000000123
16.67500000000012
16.70000000000012
16.72500000000012
16.750000000000117
16.775000000000116
16.800000000000114
16.825000000000113
16.85000000000011
16.87500000000011
16.90000000000011
16.925000000000107
16.950000000000106
tfinal = 16.95292673907312
16.35000000000014
16.37500000000014
16.400000000000137
16.425000000000136
16.450000000000134
16.475000000000133
16.50000000000013
16.52500000000013
16.55000000000013
16.575000000000127
16.600000000000126
16.625000000000124
16.650000000000123
16.67500000000012
16.70000000000012
16.72500000000012
16.750000000000117
16.775000000000116
16.800000000000114
16.825000000000113
16.85000000000011
16.87500000000011
16.90000000000011
16.925000000000107
16.950000000000106
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.60780411e-15 7.30102223e-15 1.28203942e-14 ... 1.09189378e-14
 2.66106349e-18 9.95009426e-22]
(9216, 3)
[[3.60780411e-15 7.30102223e-15 1.28203942e-14 2.68044506e-18
  9.54357793e-22]
 [3.90547619e-06 5.34050065e-14 1.75137230e-13 7.27685355e-15
  0.00000000e+00]
 [7.98048358e-15 3.66675493e-14 1.42086177e-14 5.19918352e-18
  1.70729514e-21]
 ...
 [4.25939053e-05 5.27919845e-05 5.17303040e-05 9.83725639e-13
  3.43416775e-15]
 [3.05927753e-05 2.87983858e-05 5.77184681e-06 2.28754000e-13
  1.07577960e-14]
 [8.10481600e-15 1.29470149e-14 1.09189378e-14 2.66106349e-18
  9.95009426e-22]]
compute original rho
0.0006813441807272956 0.0
0.0011442564690018538 0.0
0.0020659963567483124 0.0
0.004255354774699278 0.0
0.011212035664046034 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.699999999999999 -> 4.799999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 4.799999999999999 (current = 4.699999999999999)
   -> iter = None (current = 2066)
   -> walltime = 856.655166828 (current = 862.862891072)

Info: evolve_until (target_time = 4.80s, niter_max = -1, max_walltime = 856.66s)      [SPH][rank=0]
---------------- t = 4.699999999999999, dt = 0.0023190579232504143 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.81 us    (2.4%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 305.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.083350555803352e-23,-4.194611270740334e-24,-3.5386954791686185e-17)
    sum a = (-1.5446652874067906e-22,2.1165098538248652e-23,-1.7603325507302604e-17)
    sum e = 3.1607897534590238e-09
    sum de = -1.537139168502664e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190619897172715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.415801487168064 (tsim/hr)                            [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 863.19s > 856.66s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 27):
   -> walltime = 863.1920263840001 >= 856.655166828
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000027.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (55.6%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000027.sham              [Shamrock Dump][rank=0]
              - took 1.46 ms, bandwidth = 2.38 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 863.1920263840001 -> 893.1920263840001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.799999999999999 (current = 4.7023190579232494)
   -> iter = None (current = 2067)
   -> walltime = 893.1920263840001 (current = 863.1963394500001)

Info: evolve_until (target_time = 4.80s, niter_max = -1, max_walltime = 893.19s)      [SPH][rank=0]
---------------- t = 4.7023190579232494, dt = 0.0023190619897172715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (1.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 299.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.047642929171054e-23,-4.145996575719774e-24,-3.5427490284115816e-17)
    sum a = (-1.5193636284313135e-22,2.122802052414963e-23,-1.735603547062843e-17)
    sum e = 3.1607893975634986e-09
    sum de = -1.531485329179563e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190661282789606 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69943508712802 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 7.28s (niter = 25) global walltime = 863.49s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.704638119912967, dt = 0.0023190661282789606 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1.23 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.68 us    (0.6%)
   LB compute        : 271.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (3.012698710157361e-23,-4.096633657608045e-24,-3.546745333764232e-17)
    sum a = (-1.504396107695906e-22,2.0182287564553222e-23,-1.71080057190388e-17)
    sum e = 3.1607890430574805e-09
    sum de = -1.525396453765875e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190703110596528 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1732e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.745680323421407 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.706957186041246, dt = 0.0023190703110596528 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.50 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 317.96 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.9779820389896296e-23,-4.051066871355919e-24,-3.5506840407149484e-17)
    sum a = (-1.4942424672733e-22,2.051448967686617e-23,-1.6859106064194884e-17)
    sum e = 3.1607886900133184e-09
    sum de = -1.5188765075952366e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190745379768037 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0619e+04 | 9216 |      1 | 3.010e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.737406908551677 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.709276256352306, dt = 0.0023190745379768037 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.0%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 321.80 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.943448022282389e-23,-4.003158586959667e-24,-3.554564932294878e-17)
    sum a = (-1.4655580146796874e-22,2.0086050532894965e-23,-1.66092005079376e-17)
    sum e = 3.1607883385305226e-09
    sum de = -1.5119330785337264e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190788084044506 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.608050443991495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.711595330890282, dt = 0.0023190788084044506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 282.03 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.77 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.909790526919891e-23,-3.957035034701465e-24,-3.5583877592998493e-17)
    sum a = (-1.4555923212956144e-22,2.0087814358799586e-23,-1.6358159496916448e-17)
    sum e = 3.1607879887064187e-09
    sum de = -1.5045738240723893e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190831217850777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1708e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.72356200778617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.7139144096986865, dt = 0.0023190831217850777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.8%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 301.07 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.87614821608483e-23,-3.9104977590869716e-24,-3.562152243262023e-17)
    sum a = (-1.4323426091312614e-22,1.8795818210551246e-23,-1.6105854795055193e-17)
    sum e = 3.160787640636554e-09
    sum de = -1.4968064893074682e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190874776396753 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1616e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.640933460434315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.716233492820471, dt = 0.0023190874776396753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.4%)
   LB compute        : 325.01 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.843206594168088e-23,-3.868430016114131e-24,-3.565858076108795e-17)
    sum a = (-1.4214422860767928e-22,1.975540882333373e-23,-1.5852161685950936e-17)
    sum e = 3.1607872944146666e-09
    sum de = -1.4886389052131178e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319091875578003 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1676e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.69531677161923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.718552580298111, dt = 0.002319091875578003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 296.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
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.186197916666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.8103692833528777e-23,-3.8214438066449355e-24,-3.569504921216245e-17)
    sum a = (-1.408668181333144e-22,1.8645154138355945e-23,-1.559695798171177e-17)
    sum e = 3.160786950132673e-09
    sum de = -1.4800789661549946e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190963153051137 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.901e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.776165637327974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.720871672173689, dt = 0.0023190963153051137 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 269.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1864149305555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.777848206826494e-23,-3.7795323102587795e-24,-3.573092413953805e-17)
    sum a = (-1.4008258460522788e-22,1.8066089983836112e-23,-1.5340124321415294e-17)
    sum e = 3.160786607880647e-09
    sum de = -1.4711346465109802e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319100796623834 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1073e+04 | 9216 |      1 | 2.966e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.149372916181598 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.723190768488994, dt = 0.002319100796623834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.4%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.44 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 267.29 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1867404513888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.745455208488069e-23,-3.7382634054685674e-24,-3.5766201623160655e-17)
    sum a = (-1.368236362129457e-22,1.9007924327386317e-23,-1.5081543417547806e-17)
    sum e = 3.1607862677468067e-09
    sum de = -1.4618139812918126e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191053194333592 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1719e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.73464304677934 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.7255098692856174, dt = 0.0023191053194333592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 307.43 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.72 us    (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.1867404513888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.7140938777529963e-23,-3.693132349134239e-24,-3.580087747296113e-17)
    sum a = (-1.3554406139325681e-22,1.801856158770784e-23,-1.4821107273922123e-17)
    sum e = 3.160785929817505e-09
    sum de = -1.4521250765064604e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319109883723702 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1462e+04 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.501562975910534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.727828974605051, dt = 0.002319109883723702 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 320.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1869574652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.682813311098646e-23,-3.652464223473112e-24,-3.5834947260004555e-17)
    sum a = (-1.3430906086389616e-22,1.829937934169382e-23,-1.4558706103330548e-17)
    sum e = 3.160785594177199e-09
    sum de = -1.4420760950693148e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191144895664986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58816671368812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.730148084488774, dt = 0.0023191144895664986 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 264.29 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 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.1869574652777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6518082665943376e-23,-3.609696671844414e-24,-3.586840629772076e-17)
    sum a = (-1.3251504415754669e-22,1.8024177112039864e-23,-1.4294231798743253e-17)
    sum e = 3.1607852609084538e-09
    sum de = -1.4316752593136237e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319119137102256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9115e+04 | 9216 |      1 | 3.165e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.375827850280327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.73246719897834, dt = 0.002319119137102256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 288.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1872829861111107
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.6212783437529206e-23,-3.568258316530614e-24,-3.590124965110863e-17)
    sum a = (-1.315745244309644e-22,1.7266523934185056e-23,-1.4027584478717654e-17)
    sum e = 3.1607849300919206e-09
    sum de = -1.4209308379472358e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191238265246436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1730e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.744527388308857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.734786318115442, dt = 0.0023191238265246436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 282.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.590881340542994e-23,-3.529071232458769e-24,-3.59334721630075e-17)
    sum a = (-1.302834577848576e-22,1.7337000497568662e-23,-1.3758666352943965e-17)
    sum e = 3.1607846018063206e-09
    sum de = -1.4098511484855584e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319128558062332 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9989e+04 | 9216 |      1 | 3.073e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.166962310617382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.737105441941967, dt = 0.002319128558062332 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.33 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 271.26 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.76 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5608131153619506e-23,-3.488757412437872e-24,-3.596506845198453e-17)
    sum a = (-1.282947017147667e-22,1.7477441146534823e-23,-1.3487382302668258e-17)
    sum e = 3.1607842761284506e-09
    sum de = -1.3984445482201985e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191333319590376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1714e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.730097564680033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.739424570500029, dt = 0.0023191333319590376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 330.56 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5312888923813096e-23,-3.4480672802152396e-24,-3.599603291844703e-17)
    sum a = (-1.26115032121652e-22,1.738057844082478e-23,-1.3213639622557688e-17)
    sum e = 3.160783953133161e-09
    sum de = -1.386719439889232e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319138148452361 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7492e+04 | 9216 |      1 | 3.352e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.90565113633819 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.741743703831988, dt = 0.002319138148452361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.0%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 335.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.5022934870736322e-23,-3.407861292345716e-24,-3.6026359751234555e-17)
    sum a = (-1.2503774931761303e-22,1.6954133091325922e-23,-1.293735662567097e-17)
    sum e = 3.160783632893348e-09
    sum de = -1.3746842587108906e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319143007752373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1550e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.582018539788784 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7440628419804405, dt = 0.002319143007752373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 309.86 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 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.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4734217586416128e-23,-3.3690527211317564e-24,-3.605604296226378e-17)
    sum a = (-1.233858751926801e-22,1.5912823313051e-23,-1.2658445944019052e-17)
    sum e = 3.1607833154799487e-09
    sum de = -1.3623474720886654e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191479100205027 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1559e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.589396099222668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.746381984988193, dt = 0.0023191479100205027 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1.54 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 288.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 5.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.62 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.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.4449969834737585e-23,-3.333402091493755e-24,-3.608507635382239e-17)
    sum a = (-1.2201135306337816e-22,1.6255647029815313e-23,-1.2376828730889097e-17)
    sum e = 3.160783000961936e-09
    sum de = -1.3497175734897092e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319152855349995 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.991e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.91564315944806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.748701132898213, dt = 0.002319152855349995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 297.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.416860494261619e-23,-3.2952405131880413e-24,-3.611345355547956e-17)
    sum a = (-1.21455125117732e-22,1.556510451176193e-23,-1.2092431049837318e-17)
    sum e = 3.160782689406309e-09
    sum de = -1.336803082081247e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191578437475003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.113e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.822991609105205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.751020285753563, dt = 0.0023191578437475003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 275.10 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.388758555351042e-23,-3.2600058075624833e-24,-3.6141168030875015e-17)
    sum a = (-1.193786409905297e-22,1.653697423570013e-23,-1.1805176956130835e-17)
    sum e = 3.160782380878086e-09
    sum de = -1.3236125372548503e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191628751166337 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71800098580271 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.75333944359731, dt = 0.0023191628751166337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 1.94 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 299.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.361320114269839e-23,-3.2205238355664725e-24,-3.6168213065318284e-17)
    sum a = (-1.1857064917864247e-22,1.5917655678875466e-23,-1.1515005602283981e-17)
    sum e = 3.1607820754403055e-09
    sum de = -1.3101544955066872e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191679492464323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.561711744668898 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.755658606472427, dt = 0.0023191679492464323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.82 us    (2.5%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 292.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3339065406031366e-23,-3.1843340451716007e-24,-3.619458181982695e-17)
    sum a = (-1.1674831222829228e-22,1.6311583858012604e-23,-1.1221848124957376e-17)
    sum e = 3.1607817731540216e-09
    sum de = -1.2964375218099723e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.97e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191730658021488 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.036e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.503450059616654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.757977774421674, dt = 0.0023191730658021488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.5%)
   LB compute        : 277.47 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 5.68 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.3070418105803677e-23,-3.145996414373847e-24,-3.622026728711791e-17)
    sum a = (-1.1608858852421646e-22,1.5908395592876204e-23,-1.0925646635185119e-17)
    sum e = 3.160781474078301e-09
    sum de = -1.2824701965796288e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191782243202285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51324258153826 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.760296947487476, dt = 0.0023191782243202285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 267.59 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2801946858068023e-23,-3.1096349727992364e-24,-3.6245262337555993e-17)
    sum a = (-1.1376259730365542e-22,1.5149845647640073e-23,-1.0626343168178254e-17)
    sum e = 3.160781178270214e-09
    sum de = -1.2682610985064885e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191834242074767 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1712e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.729225749032018 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 5.35s (niter = 18) global walltime = 870.92s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.762616125711797, dt = 0.0023191834242074767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.8%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 297.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 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.1877170138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2540845607780376e-23,-3.0753443486622404e-24,-3.626955970754766e-17)
    sum a = (-1.1277287310620424e-22,1.603809869032007e-23,-1.0323886698851526e-17)
    sum e = 3.1607808857848546e-09
    sum de = -1.2538188108629055e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319188664744482 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0641e+04 | 9216 |      1 | 3.008e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.75853945996295 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.764935309136004, dt = 0.002319188664744482 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 296.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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.1877170138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2280439764836283e-23,-3.0370793395174526e-24,-3.629315202252031e-17)
    sum a = (-1.1053787681680996e-22,1.5214631589300518e-23,-1.001823279587528e-17)
    sum e = 3.160780596675311e-09
    sum de = -1.239151915690698e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191939450934434 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.86663002200126 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.7672544978007485, dt = 0.0023191939450934434 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.1%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 290.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.90 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.1877170138888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.2026657896905176e-23,-3.0028085212858114e-24,-3.6316031812720754e-17)
    sum a = (-1.1015907237198507e-22,1.5978903515609954e-23,-9.709331828688707e-18)
    sum e = 3.1607803109926923e-09
    sum de = -1.2242689891193674e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191992643096827 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9732e+04 | 9216 |      1 | 3.100e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.93520085455427 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.769573691745842, dt = 0.0023191992643096827 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 301.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1879340277777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1771678872028204e-23,-2.9648494033459425e-24,-3.633819148732009e-17)
    sum a = (-1.0887550226105496e-22,1.4919036154181953e-23,-9.39714780206692e-18)
    sum e = 3.1607800287861177e-09
    sum de = -1.20917859745115e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319204621357147 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7851e+04 | 9216 |      1 | 3.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.231110052438716 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.771892891010152, dt = 0.002319204621357147 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.57 us    (2.6%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 271.05 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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.1883680555555562
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1520683034783622e-23,-2.931505061353659e-24,-3.635962338752107e-17)
    sum a = (-1.077548599288828e-22,1.4600842731218007e-23,-9.081643145168051e-18)
    sum e = 3.1607797501027175e-09
    sum de = -1.1938892970204238e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319210015127406 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8452e+04 | 9216 |      1 | 3.239e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.77546142904318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.774212095631509, dt = 0.002319210015127406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 291.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
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.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.1272061705525426e-23,-2.8979736635885838e-24,-3.638031976534484e-17)
    sum a = (-1.065159862446973e-22,1.5396883329715972e-23,-8.762782749832455e-18)
    sum e = 3.160779474987645e-09
    sum de = -1.1784096261969419e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192154444609415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1339e+04 | 9216 |      1 | 2.941e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.391249439993704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.776531305646636, dt = 0.0023192154444609415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.3%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 278.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1885850694444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.102638485419659e-23,-2.861290926216001e-24,-3.640027279441969e-17)
    sum a = (-1.0535023266209617e-22,1.469445094156349e-23,-8.440542164684076e-18)
    sum e = 3.1607792034840745e-09
    sum de = -1.1627481030164324e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192209081710907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.131e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.66548522131422 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.778850521091098, dt = 0.0023192209081710907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 302.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.85 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.188802083333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0783436816494366e-23,-2.8280984294981017e-24,-3.64194746034893e-17)
    sum a = (-1.0374390001586963e-22,1.419195201583164e-23,-8.114894950592641e-18)
    sum e = 3.1607789356332033e-09
    sum de = -1.146913225955699e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192264050692878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.983e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.984631013122904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7811697419992685, dt = 0.0023192264050692878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 268.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0544692032039585e-23,-2.7957795932719484e-24,-3.643791725823867e-17)
    sum a = (-1.0329232537378829e-22,1.401669120984227e-23,-7.785821927758176e-18)
    sum e = 3.160778671474269e-09
    sum de = -1.1309134693975857e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192319339909668 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1479e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.518004670859813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.783488968404337, dt = 0.0023192319339909668 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 261.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1890190972222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0305716178689e-23,-2.7634519544211933e-24,-3.645559278770528e-17)
    sum a = (-1.0075476087026261e-22,1.4700655966661824e-23,-7.453305961449915e-18)
    sum e = 3.160778411044536e-09
    sum de = -1.1147572733063614e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192374938212643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.6758285222017 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.785808200338328, dt = 0.0023192374938212643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1.47 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 269.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.189127604166666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (2.0074931167530558e-23,-2.7285803570604674e-24,-3.647249318346041e-17)
    sum a = (-1.0063578019483002e-22,1.284681249728704e-23,-7.11733284214498e-18)
    sum e = 3.160778154379328e-09
    sum de = -1.0984530484633019e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192430835196672 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1618e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.644137675448953 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7881274378321494, dt = 0.0023192430835196672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 291.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1891276041666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9841657214265904e-23,-2.7009203099049095e-24,-3.6488610407704307e-17)
    sum a = (-1.0003518482053375e-22,1.3603320508697535e-23,-6.7778963612543106e-18)
    sum e = 3.1607779015120126e-09
    sum de = -1.0820091722324648e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192487021431955 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1586e+04 | 9216 |      1 | 2.918e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.615082235853546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.790446680915669, dt = 0.0023192487021431955 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 269.50 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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.1891276041666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9610401262691253e-23,-2.6684980428396832e-24,-3.650393641725221e-17)
    sum a = (-9.817209832024487e-23,1.3231846999673979e-23,-6.434987732581752e-18)
    sum e = 3.1607776524740223e-09
    sum de = -1.065433982853783e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319254348866863 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1591e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.61973271608135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.792765929617812, dt = 0.002319254348866863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1.19 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 322.91 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.189344618055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.93849154315432e-23,-2.638265428644198e-24,-3.651846314524688e-17)
    sum a = (-9.625671762785181e-23,1.3299403292345878e-23,-6.0886079921362524e-18)
    sum e = 3.1607774072948607e-09
    sum de = -1.0487357793655373e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319260023001238 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.948e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.321413289911156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.7950851839666795, dt = 0.002319260023001238 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 302.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.189344618055556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.9163806705478477e-23,-2.6072955946382976e-24,-3.653218253911886e-17)
    sum a = (-9.652115287220746e-23,1.278276377543701e-23,-5.73875974876817e-18)
    sum e = 3.1607771660021124e-09
    sum de = -1.031922815788316e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.98e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319265724006191 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.976e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.05194302082583 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.797404443989681, dt = 0.002319265724006191 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.35 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 298.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1898871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.893965887326992e-23,-2.578271140669434e-24,-3.654508655329127e-17)
    sum a = (-9.482330043832226e-23,1.3568859333708875e-23,-5.3854489288538705e-18)
    sum e = 3.1607769286214515e-09
    sum de = -1.0150032980421853e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319271451500549 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.55557900135971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.799723709713687, dt = 0.00027629028631181995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.46 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.6%)
   LB compute        : 268.76 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (63.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1898871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.891541424445993e-23,-2.5735375292897213e-24,-3.654616478973645e-17)
    sum a = (-9.394126865057971e-23,1.231529104316046e-23,-5.345151117417563e-18)
    sum e = 3.1607769025306827e-09
    sum de = -1.01293138305331e-13
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319272150712496 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4042186151775238 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2111                                                    [SPH][rank=0]
Info: time since start : 876.034515989 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 48):
   -> t = 4.799999999999999 >= 4.799999999999999
--------------------------------
tfinal = 17.580812914594347
16.975000000000104
17.000000000000103
17.0250000000001
17.0500000000001
17.0750000000001
17.100000000000097
17.125000000000096
17.150000000000095
17.175000000000093
17.20000000000009
17.22500000000009
17.25000000000009
17.275000000000087
17.300000000000086
17.325000000000085
17.350000000000083
17.37500000000008
17.40000000000008
17.42500000000008
17.450000000000077
17.475000000000076
17.500000000000075
17.525000000000073
17.55000000000007
17.57500000000007
tfinal = 17.580812914594347
16.975000000000104
17.000000000000103
17.0250000000001
17.0500000000001
17.0750000000001
17.100000000000097
17.125000000000096
17.150000000000095
17.175000000000093
17.20000000000009
17.22500000000009
17.25000000000009
17.275000000000087
17.300000000000086
17.325000000000085
17.350000000000083
17.37500000000008
17.40000000000008
17.42500000000008
17.450000000000077
17.475000000000076
17.500000000000075
17.525000000000073
17.55000000000007
17.57500000000007
tfinal = 17.580812914594347
16.975000000000104
17.000000000000103
17.0250000000001
17.0500000000001
17.0750000000001
17.100000000000097
17.125000000000096
17.150000000000095
17.175000000000093
17.20000000000009
17.22500000000009
17.25000000000009
17.275000000000087
17.300000000000086
17.325000000000085
17.350000000000083
17.37500000000008
17.40000000000008
17.42500000000008
17.450000000000077
17.475000000000076
17.500000000000075
17.525000000000073
17.55000000000007
17.57500000000007
tfinal = 17.580812914594347
16.975000000000104
17.000000000000103
17.0250000000001
17.0500000000001
17.0750000000001
17.100000000000097
17.125000000000096
17.150000000000095
17.175000000000093
17.20000000000009
17.22500000000009
17.25000000000009
17.275000000000087
17.300000000000086
17.325000000000085
17.350000000000083
17.37500000000008
17.40000000000008
17.42500000000008
17.450000000000077
17.475000000000076
17.500000000000075
17.525000000000073
17.55000000000007
17.57500000000007
tfinal = 17.580812914594347
16.975000000000104
17.000000000000103
17.0250000000001
17.0500000000001
17.0750000000001
17.100000000000097
17.125000000000096
17.150000000000095
17.175000000000093
17.20000000000009
17.22500000000009
17.25000000000009
17.275000000000087
17.300000000000086
17.325000000000085
17.350000000000083
17.37500000000008
17.40000000000008
17.42500000000008
17.450000000000077
17.475000000000076
17.500000000000075
17.525000000000073
17.55000000000007
17.57500000000007
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.62410973e-15 7.15394575e-15 5.13796955e-15 ... 1.00915680e-14
 2.52915407e-16 1.03340660e-21]
(9216, 3)
[[3.62410973e-15 7.15394575e-15 5.13796955e-15 1.82513793e-19
  1.02963822e-21]
 [3.66329877e-06 5.08601722e-14 1.27813883e-13 4.49710471e-16
  2.42313703e-22]
 [7.42006515e-15 3.42577329e-14 1.27781400e-14 3.36613679e-18
  1.58125615e-21]
 ...
 [4.25920161e-05 5.26681469e-05 5.03489274e-05 8.60791837e-13
  3.74022627e-16]
 [3.04304168e-05 2.81578832e-05 4.26337708e-06 5.04208710e-14
  1.13470037e-14]
 [7.64891258e-15 1.19877481e-14 1.00915680e-14 2.52915407e-16
  1.03340660e-21]]
compute original rho
0.0006823226772508706 0.0
0.001148206447533458 0.0
0.00208119055730048 0.0
0.004315810008495962 0.0
0.01152253750558901 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.799999999999999 -> 4.899999999999999

[Simulation] Evolve until next trigger(s) :
   -> t = 4.899999999999999 (current = 4.799999999999999)
   -> iter = None (current = 2110)
   -> walltime = 893.1920263840001 (current = 881.923863985)

Info: evolve_until (target_time = 4.90s, niter_max = -1, max_walltime = 893.19s)      [SPH][rank=0]
---------------- t = 4.799999999999999, dt = 0.002319272150712496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.3%)
   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.30 us    (0.4%)
   LB compute        : 301.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.1898871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8697643913775507e-23,-2.5452040813521128e-24,-3.655855608295072e-17)
    sum a = (-9.371094247622864e-23,1.3287454279612733e-23,-4.985930328260614e-18)
    sum e = 3.1607766676421934e-09
    sum de = -9.959567253670583e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192778913503098 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9336e+04 | 9216 |      1 | 3.142e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.576964464614484 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.52s (niter = 8) global walltime = 882.24s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.8023192721507115, dt = 0.0023192778913503098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 283.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1898871527777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.84806152042138e-23,-2.5132417514223394e-24,-3.6569703275475704e-17)
    sum a = (-9.307238248235214e-23,1.2789560226875791e-23,-4.625331689613073e-18)
    sum e = 3.1607764386205686e-09
    sum de = -9.788358930434294e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192836750103476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0061e+04 | 9216 |      1 | 3.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.23465313185665 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.804638550042061, dt = 0.0023192836750103476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 292.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (58.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1901041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.8265454851723862e-23,-2.4841600803935626e-24,-3.658001256755741e-17)
    sum a = (-9.153828197295327e-23,1.3450100099301415e-23,-4.261301198084623e-18)
    sum e = 3.1607762135861367e-09
    sum de = -9.616361556964834e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192894844925073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1625e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65149114698576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.806957833717072, dt = 0.0023192894844925073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 326.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (52.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1901041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.805496429158527e-23,-2.4522021517760906e-24,-3.6589473613638394e-17)
    sum a = (-9.087837891540119e-23,1.286630013274572e-23,-3.893871095057746e-18)
    sum e = 3.1607759925494075e-09
    sum de = -9.443631045105006e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192953206092326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1506e+04 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.543739152540837 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.809277123201564, dt = 0.0023192953206092326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 302.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.1901041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.784490065873988e-23,-2.4230588623751e-24,-3.659807856219562e-17)
    sum a = (-8.934940703516105e-23,1.1874826413654882e-23,-3.5230660847732414e-18)
    sum e = 3.1607757755267546e-09
    sum de = -9.270246695353511e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319301183767124 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.480100382856296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.811596418522173, dt = 0.002319301183767124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 313.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (60.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1901041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7639460604466672e-23,-2.396644386600722e-24,-3.66058196103978e-17)
    sum a = (-8.828527645260551e-23,1.1874990637620112e-23,-3.1489147685451138e-18)
    sum e = 3.16077556253244e-09
    sum de = -9.096287123188086e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319307074492944 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1430e+04 | 9216 |      1 | 2.932e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.474842774498168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.81391571970594, dt = 0.002319307074492944 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.8%)
   patch tree reduce : 1.91 us    (0.5%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.4%)
   LB compute        : 327.21 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1901041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7435965930230503e-23,-2.369125181438796e-24,-3.661268902591825e-17)
    sum a = (-8.661537015117543e-23,1.1270846705281176e-23,-2.771448067350052e-18)
    sum e = 3.1607753535789116e-09
    sum de = -8.921830280961568e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319312993408039 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.541206735221984 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.816235026780433, dt = 0.002319312993408039 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.9%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 1.47 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 321.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.4%)
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.190321180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7236982601102846e-23,-2.343599770749217e-24,-3.6618679150772846e-17)
    sum a = (-8.635270203370863e-23,1.1426914488654015e-23,-2.3907007384294192e-18)
    sum e = 3.160775148676818e-09
    sum de = -8.746953426514297e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193189412031995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9165e+04 | 9216 |      1 | 3.160e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.422889981305932 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.818554339773841, dt = 0.0023193189412031995 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 326.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.190321180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.7037052989830477e-23,-2.3169916372335958e-24,-3.662378241232774e-17)
    sum a = (-8.548719387267206e-23,1.1752252066728523e-23,-2.0067131813798625e-18)
    sum e = 3.1607749478350214e-09
    sum de = -8.571733122288106e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319324918611012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.651180380406412 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.10s (niter = 7) global walltime = 884.62s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.820873658715044, dt = 0.002319324918611012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.190321180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6839790573812506e-23,-2.289313984828834e-24,-3.6627991337308673e-17)
    sum a = (-8.369443704196874e-23,1.1508872700420803e-23,-1.6195238329612861e-18)
    sum e = 3.160774751060617e-09
    sum de = -8.396245179338169e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319330926376421 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1682e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70370912630291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.823192983633655, dt = 0.002319330926376421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.4%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 270.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.70 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 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.190321180555556
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.664773270959045e-23,-2.26291711430366e-24,-3.663129854014196e-17)
    sum a = (-8.297670954340629e-23,1.1053923077050656e-23,-1.2291754241493128e-18)
    sum e = 3.160774558358954e-09
    sum de = -8.220564659665988e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 1.99e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193369652264404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1730e+04 | 9216 |      1 | 2.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.74665736600262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.825512314560031, dt = 0.0023193369652264404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 322.28 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1906467013888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6456163391033807e-23,-2.2378252328757286e-24,-3.6633696738491093e-17)
    sum a = (-8.206359568819417e-23,1.1504473313693946e-23,-8.357196023026862e-19)
    sum e = 3.160774369733645e-09
    sum de = -8.044765893214798e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193430358397 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1525e+04 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.56135580387431 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.8278316515252575, dt = 0.0023193430358397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1.92 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.5%)
   LB compute        : 306.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1906467013888893
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.626684974503142e-23,-2.210660333354032e-24,-3.66351787806395e-17)
    sum a = (-8.155912277389532e-23,1.158611765687727e-23,-4.392049202493804e-19)
    sum e = 3.160774185186591e-09
    sum de = -7.868922395862114e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319349138816997 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9302e+04 | 9216 |      1 | 3.145e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.547748313171883 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.830150994561097, dt = 0.002319349138816997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.62 us    (2.2%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 316.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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.1908637152777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.6078299726713257e-23,-2.183623071889064e-24,-3.663573762338718e-17)
    sum a = (-8.014408436420663e-23,9.949434111187166e-24,-3.9686238121263826e-20)
    sum e = 3.1607740047179934e-09
    sum de = -7.693106837842187e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319355274652719 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8200e+04 | 9216 |      1 | 3.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.549019272503394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.832470343699915, dt = 0.002319355274652719 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 349.43 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1908637152777786
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5894049790513153e-23,-2.1625077761250752e-24,-3.663536635824949e-17)
    sum a = (-7.989012864443963e-23,1.0962908890142568e-23,3.627798892041381e-19)
    sum e = 3.160773828326383e-09
    sum de = -7.517391061604953e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193614437090524 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1594e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.624358843704318 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.834789698974567, dt = 0.0023193614437090524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (1.9%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 1.32 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 334.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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.191080729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.570908023975184e-23,-2.1358776360479487e-24,-3.6634058209564576e-17)
    sum a = (-7.913520015398115e-23,1.071473897047724e-23,7.6813656737003e-19)
    sum e = 3.1607736560086288e-09
    sum de = -7.341846073135964e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319367646193002 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8375e+04 | 9216 |      1 | 3.248e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.7075080936215 (tsim/hr)                              [sph::Model][rank=0]
Info: next walltime check in 1.51s (niter = 5) global walltime = 886.75s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.837109060418276, dt = 0.002319367646193002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (1.7%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 323.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (63.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191080729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5526390568762443e-23,-2.1113469219383933e-24,-3.6631806534134705e-17)
    sum a = (-7.768634096024359e-23,1.1221986912181854e-23,1.1763186643579147e-18)
    sum e = 3.160773487759968e-09
    sum de = -7.16654196157336e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193738821370956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.936e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.438402933377752 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.839428428064468, dt = 0.0023193738821370956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.2%)
   patch tree reduce : 1.96 us    (0.6%)
   gen split merge   : 1.26 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 286.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191080729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.534791515430124e-23,-2.084690373987461e-24,-3.662860484919437e-17)
    sum a = (-7.609288655380976e-23,1.059061151047267e-23,1.5872625483723537e-18)
    sum e = 3.1607733235740207e-09
    sum de = -6.991547989603489e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193801513841598 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1715e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.73412284542125 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.841747801946605, dt = 0.0023193801513841598 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 272.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.191080729166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.5173312894664902e-23,-2.060857267877612e-24,-3.6624446817696705e-17)
    sum a = (-7.630969739841257e-23,9.952334025829479e-24,2.000900591423848e-18)
    sum e = 3.1607731634428072e-09
    sum de = -6.81693240189514e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.00e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319386453577418 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9903e+04 | 9216 |      1 | 3.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.09259521937216 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.844067182097989, dt = 0.002319386453577418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 298.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.1912977430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4996063245679524e-23,-2.0384897987639924e-24,-3.6619326264067986e-17)
    sum a = (-7.544872589003023e-23,1.0458067916102555e-23,2.417162104724336e-18)
    sum e = 3.1607730073567795e-09
    sum de = -6.642762611743086e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193927881550915 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1694e+04 | 9216 |      1 | 2.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71467886818165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.846386568551567, dt = 0.0023193927881550915 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 286.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1912977430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4822070567796872e-23,-2.0136685980425717e-24,-3.661323718003279e-17)
    sum a = (-7.375006471500974e-23,9.886718436800298e-24,2.8359756590386847e-18)
    sum e = 3.1607728553048397e-09
    sum de = -6.469105027849573e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193991543514307 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1629e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.656718287746386 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 1.20s (niter = 4) global walltime = 888.23s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.848705961339721, dt = 0.0023193991543514307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.9%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1.43 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 269.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1912977430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.465291493213301e-23,-1.9913759512380688e-24,-3.660617372392295e-17)
    sum a = (-7.379889947564535e-23,1.023767935476308e-23,3.2572659164968576e-18)
    sum e = 3.1607727072743533e-09
    sum de = -6.29602515632824e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194055512022957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.910e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.693845972767917 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.851025360494073, dt = 0.0023194055512022957 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 299.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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.1912977430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4481725890186092e-23,-1.96732057885702e-24,-3.659813023308488e-17)
    sum a = (-7.20270631826367e-23,9.990884295027775e-24,3.6809549329840354e-18)
    sum e = 3.1607725632511832e-09
    sum de = -6.123587412393965e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319411977551184 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65856318988716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.853344766045275, dt = 0.002319411977551184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.41 us    (2.8%)
   patch tree reduce : 3.91 us    (1.3%)
   gen split merge   : 1.75 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.76 us    (0.6%)
   LB compute        : 273.30 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.1912977430555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.43166832808675e-23,-1.9443721365196696e-24,-3.658910122890588e-17)
    sum a = (-7.15864169989987e-23,9.330091897308881e-24,4.106962115733424e-18)
    sum e = 3.160772423219709e-09
    sum de = -5.95185539373988e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194184320656282 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1652e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.676981473161426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.855664178022827, dt = 0.0023194184320656282 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.46 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 325.15 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1915147569444446
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.4151220346224167e-23,-1.9234571004653757e-24,-3.657908142211768e-17)
    sum a = (-7.154249960453137e-23,9.457751685517013e-24,4.5352063649630085e-18)
    sum e = 3.1607722871628442e-09
    sum de = -5.780891421916523e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319424913254977 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.923e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.567775417283784 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.90s (niter = 3) global walltime = 889.40s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.8579835964548925, dt = 0.002319424913254977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.7%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 323.48 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.78 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3985262263946972e-23,-1.9014307330550826e-24,-3.656806571270627e-17)
    sum a = (-6.989565397890232e-23,9.507645787007067e-24,4.96560492231785e-18)
    sum e = 3.160772155062074e-09
    sum de = -5.610756998552162e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.01e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194314194920065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1331e+04 | 9216 |      1 | 2.942e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.386399080225047 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.860303021368147, dt = 0.0023194314194920065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1.39 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 271.05 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.382507650275252e-23,-1.879292132181114e-24,-3.6556049194005053e-17)
    sum a = (-6.90530238392063e-23,9.577207702678122e-24,5.398070076377796e-18)
    sum e = 3.1607720268974657e-09
    sum de = -5.441512564083204e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194379490373224 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1793e+04 | 9216 |      1 | 2.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.8056567747712 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 4.862622452787639, dt = 0.0023194379490373224 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.5%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 1.28 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.3%)
   LB compute        : 414.90 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3665867832888892e-23,-1.8569510709413e-24,-3.654302716880812e-17)
    sum a = (-6.868788436874789e-23,9.182164616118738e-24,5.8325144099812334e-18)
    sum e = 3.1607719026476925e-09
    sum de = -5.2732174525629784e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319444500066127 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1737e+04 | 9216 |      1 | 2.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.754698355359434 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.60s (niter = 2) global walltime = 890.27s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.864941890736676, dt = 0.002319444500066127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.35 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 263.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3507002465384736e-23,-1.836080048010016e-24,-3.652899514214104e-17)
    sum a = (-6.732581795325774e-23,9.366835977971659e-24,6.268848069200349e-18)
    sum e = 3.160771782290071e-09
    sum de = -5.105929949551955e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319451070696614 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.102e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.91733823673972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.867261335236742, dt = 0.002319451070696614 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.0%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 1.34 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.4%)
   LB compute        : 318.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3352428377374046e-23,-1.814247338340966e-24,-3.651394882982803e-17)
    sum a = (-6.689426268017743e-23,8.33446333940591e-24,6.706975410871452e-18)
    sum e = 3.160771665800576e-09
    sum de = -4.939707316620105e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.002319457659019284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9558e+04 | 9216 |      1 | 3.118e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.780619473689626 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 890.89s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.869580786307439, dt = 0.002319457659019284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.81 us    (0.6%)
   LB compute        : 286.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3197777266398088e-23,-1.7960919250993915e-24,-3.6497884176898267e-17)
    sum a = (-6.671278997203925e-23,9.772988802024792e-24,7.14680694523571e-18)
    sum e = 3.160771553153864e-09
    sum de = -4.774605631264807e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194642631265273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1708e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.72853457402126 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 891.19s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.871900243966458, dt = 0.0023194642631265273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 314.34 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.3043231786917354e-23,-1.7717812766048858e-24,-3.6480797328259904e-17)
    sum a = (-6.557754848696473e-23,8.912099268084073e-24,7.58824589758065e-18)
    sum e = 3.1607714443233065e-09
    sum de = -4.610679926194697e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.02e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.00231947088114179 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1320e+04 | 9216 |      1 | 2.943e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37698705437109 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 891.48s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.874219708229584, dt = 0.00231947088114179 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.52 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 338.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (56.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2892442827485512e-23,-1.752100808651019e-24,-3.6462684661998224e-17)
    sum a = (-6.436730864028136e-23,8.490453824731463e-24,8.031194830642799e-18)
    sum e = 3.1607713392810066e-09
    sum de = -4.447984138668892e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.54e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194775112475472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.944e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.36480856056621 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.30s (niter = 1) global walltime = 891.78s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.876539179110726, dt = 0.0023194775112475472 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 1.89 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 290.84 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2744558734172323e-23,-1.7328670738957024e-24,-3.6443542782588814e-17)
    sum a = (-6.317552459640412e-23,9.046044680422053e-24,8.475555249789623e-18)
    sum e = 3.160771237997838e-09
    sum de = -4.286571103728813e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319484151711663 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1641e+04 | 9216 |      1 | 2.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.668382178196776 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 892.07s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.878858656621974, dt = 0.002319484151711663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.59 us    (0.5%)
   LB compute        : 321.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.3%)
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.1919487847222223
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2599436464328004e-23,-1.7111950121256385e-24,-3.6423368524449425e-17)
    sum a = (-6.266679781376637e-23,8.582935574209912e-24,8.921226068786965e-18)
    sum e = 3.1607711404434513e-09
    sum de = -4.1264924623621805e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023194908009117852 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.51516251985436 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 892.36s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.881178140773685, dt = 0.0023194908009117852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 288.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (57.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1923828125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2454626687657055e-23,-1.6918424419381953e-24,-3.6402158959453e-17)
    sum a = (-6.124211062718584e-23,7.977352137666533e-24,9.36810750638537e-18)
    sum e = 3.1607710465863182e-09
    sum de = -3.967798799951831e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319497457360371 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.581913637124845 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 892.65s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.883497631574597, dt = 0.002319497457360371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 1.97 us    (0.6%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 300.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.58 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192599826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2314257835097803e-23,-1.6740963507406127e-24,-3.637991138919678e-17)
    sum a = (-6.041813214869332e-23,8.521673433210443e-24,9.816092839683001e-18)
    sum e = 3.1607709563937516e-09
    sum de = -3.8105395170592575e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.03e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195041197215474 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1501e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.541552535955663 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 0.00s (niter = 0) global walltime = 892.95s (max_walltime = 893.19s)  [SPH][rank=0]
---------------- t = 4.885817129031958, dt = 0.0023195041197215474 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 271.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 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.192599826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.217513675457588e-23,-1.6536654590394272e-24,-3.635662337103386e-17)
    sum a = (-6.053819664728004e-23,7.845924826128757e-24,1.026507764514625e-17)
    sum e = 3.1607708698319227e-09
    sum de = -3.654762840634479e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319510786822252 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7306e+04 | 9216 |      1 | 3.375e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.74058491856351 (tsim/hr)                             [sph::Model][rank=0]
Info: stopping evolve until because of max_walltime = 893.28s > 893.19s               [SPH][rank=0]
[Simulation] Triggering callback "checkpoint" (counter = 28):
   -> walltime = 893.2839111720001 >= 893.1920263840001
--------------------------------
[Simulation] Doing checkpoint
Info: Dumping state to _to_trash/dusty_settle_64/dump/dump_0000028.sham               [SPH][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (53.2%)
Info: dump to _to_trash/dusty_settle_64/dump/dump_0000028.sham              [Shamrock Dump][rank=0]
              - took 1.43 ms, bandwidth = 2.43 GB/s
[Simulation] Checkpoint done
--------------------------------
[Simulation] Advancing callback "checkpoint"
   -> walltime = 893.2839111720001 -> 923.2839111720001

[Simulation] Evolve until next trigger(s) :
   -> t = 4.899999999999999 (current = 4.88813663315168)
   -> iter = None (current = 2148)
   -> walltime = 923.2839111720001 (current = 893.2879308830001)

Info: evolve_until (target_time = 4.90s, niter_max = -1, max_walltime = 923.28s)      [SPH][rank=0]
---------------- t = 4.88813663315168, dt = 0.002319510786822252 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (1.0%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 314.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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.192599826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.2034497221310117e-23,-1.6362538675767195e-24,-3.6332292701640893e-17)
    sum a = (-5.895589846720113e-23,8.372536341301567e-24,1.0714961550227507e-17)
    sum e = 3.1607707868659087e-09
    sum de = -3.500515848845214e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195174576669322 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1412e+04 | 9216 |      1 | 2.934e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.461198230369803 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 7.34s (niter = 25) global walltime = 893.58s (max_walltime = 923.28s)  [SPH][rank=0]
---------------- t = 4.890456143938502, dt = 0.0023195174576669322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1.38 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 265.57 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.192599826388889
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1899616805190197e-23,-1.6162058900457204e-24,-3.630691740608304e-17)
    sum a = (-5.9343651880262e-23,8.261882948742434e-24,1.1165635400624485e-17)
    sum e = 3.160770707459704e-09
    sum de = -3.3478445055837647e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319524131445738 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1550e+04 | 9216 |      1 | 2.921e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.585863040447915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.892775661396169, dt = 0.002319524131445738 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 297.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 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.1928168402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1761538835683607e-23,-1.5971878195931522e-24,-3.6280495772346637e-17)
    sum a = (-5.805725392617849e-23,8.000052456022915e-24,1.1616991731592505e-17)
    sum e = 3.1607706315762424e-09
    sum de = -3.196793515356554e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195308075375184 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1684e+04 | 9216 |      1 | 2.909e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.70812144486723 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.895095185527615, dt = 0.0023195308075375184 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1.36 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.71 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 5.27 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1928168402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.162836172742417e-23,-1.5789465807617083e-24,-3.625302633604246e-17)
    sum a = (-5.748746993864529e-23,8.382372449048219e-24,1.2068924508689602e-17)
    sum e = 3.160770559177445e-09
    sum de = -3.047406485773928e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.04e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195374855140946 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1620e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.650150740106426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.8974147163351525, dt = 0.0023195374855140946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1.43 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 332.96 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1928168402777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1495657760237087e-23,-1.5590746557227485e-24,-3.622450787724997e-17)
    sum a = (-5.746294362584804e-23,8.296691277238833e-24,1.2521323119394902e-17)
    sum e = 3.160770490224231e-09
    sum de = -2.899725793478278e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195441651382106 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+04 | 9216 |      1 | 2.926e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.538942272990393 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.899734253820666, dt = 0.0002657461793322824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.2%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 292.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1480424818363368e-23,-1.5570016376289833e-24,-3.6220655705769526e-17)
    sum a = (-5.752527831163885e-23,7.770412061144747e-24,1.2570586222014965e-17)
    sum e = 3.160770484222472e-09
    sum de = -2.8837760773654595e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319544933470416 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2422e+04 | 9216 |      1 | 2.842e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3656516962337446 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2155                                                    [SPH][rank=0]
Info: time since start : 895.035101915 (s)                                            [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 49):
   -> t = 4.899999999999999 >= 4.899999999999999
--------------------------------
tfinal = 18.20869909011557
17.60000000000007
17.625000000000068
17.650000000000066
17.675000000000065
17.700000000000063
17.725000000000062
17.75000000000006
17.77500000000006
17.800000000000058
17.825000000000056
17.850000000000055
17.875000000000053
17.900000000000052
17.92500000000005
17.95000000000005
17.975000000000048
18.000000000000046
18.025000000000045
18.050000000000043
18.075000000000042
18.10000000000004
18.12500000000004
18.150000000000038
18.175000000000036
18.200000000000035
tfinal = 18.20869909011557
17.60000000000007
17.625000000000068
17.650000000000066
17.675000000000065
17.700000000000063
17.725000000000062
17.75000000000006
17.77500000000006
17.800000000000058
17.825000000000056
17.850000000000055
17.875000000000053
17.900000000000052
17.92500000000005
17.95000000000005
17.975000000000048
18.000000000000046
18.025000000000045
18.050000000000043
18.075000000000042
18.10000000000004
18.12500000000004
18.150000000000038
18.175000000000036
18.200000000000035
tfinal = 18.20869909011557
17.60000000000007
17.625000000000068
17.650000000000066
17.675000000000065
17.700000000000063
17.725000000000062
17.75000000000006
17.77500000000006
17.800000000000058
17.825000000000056
17.850000000000055
17.875000000000053
17.900000000000052
17.92500000000005
17.95000000000005
17.975000000000048
18.000000000000046
18.025000000000045
18.050000000000043
18.075000000000042
18.10000000000004
18.12500000000004
18.150000000000038
18.175000000000036
18.200000000000035
tfinal = 18.20869909011557
17.60000000000007
17.625000000000068
17.650000000000066
17.675000000000065
17.700000000000063
17.725000000000062
17.75000000000006
17.77500000000006
17.800000000000058
17.825000000000056
17.850000000000055
17.875000000000053
17.900000000000052
17.92500000000005
17.95000000000005
17.975000000000048
18.000000000000046
18.025000000000045
18.050000000000043
18.075000000000042
18.10000000000004
18.12500000000004
18.150000000000038
18.175000000000036
18.200000000000035
tfinal = 18.20869909011557
17.60000000000007
17.625000000000068
17.650000000000066
17.675000000000065
17.700000000000063
17.725000000000062
17.75000000000006
17.77500000000006
17.800000000000058
17.825000000000056
17.850000000000055
17.875000000000053
17.900000000000052
17.92500000000005
17.95000000000005
17.975000000000048
18.000000000000046
18.025000000000045
18.050000000000043
18.075000000000042
18.10000000000004
18.12500000000004
18.150000000000038
18.175000000000036
18.200000000000035
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.52984634e-15 6.70205461e-15 4.18599242e-15 ... 8.99640688e-15
 4.98662579e-16 1.53516258e-22]
(9216, 3)
[[3.52984634e-15 6.70205461e-15 4.18599242e-15 1.91850035e-16
  6.33186618e-22]
 [3.42269447e-06 4.67367890e-14 1.15203264e-13 2.43981824e-16
  2.86154356e-22]
 [6.73953981e-15 2.51151365e-14 1.14463095e-14 2.61690913e-18
  8.36115097e-22]
 ...
 [4.25887153e-05 5.25351846e-05 4.89206758e-05 7.81168580e-13
  2.55359499e-16]
 [3.02657088e-05 2.75163703e-05 2.81098746e-06 4.51867870e-14
  1.14622255e-14]
 [7.04613104e-15 1.10532212e-14 8.99640688e-15 4.98662579e-16
  1.53516258e-22]]
compute original rho
0.000683302647697454 0.0
0.0011521536648815209 0.0
0.0020963582067305346 0.0
0.004376504225293881 0.0
0.01183658253691212 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.899999999999999 -> 4.999999999999998

[Simulation] Evolve until next trigger(s) :
   -> t = 4.999999999999998 (current = 4.899999999999999)
   -> iter = None (current = 2154)
   -> walltime = 923.2839111720001 (current = 901.2781262670001)

Info: evolve_until (target_time = 5.00s, niter_max = -1, max_walltime = 923.28s)      [SPH][rank=0]
---------------- t = 4.899999999999999, dt = 0.002319544933470416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.01 us    (2.2%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 340.45 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 5.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1346988032678171e-23,-1.5390288788478997e-24,-3.6191491120434106e-17)
    sum a = (-5.644038563863147e-23,6.996752960943361e-24,1.3025997094234866e-17)
    sum e = 3.1607704173617722e-09
    sum de = -2.737217129145852e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319551610969063 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8044e+04 | 9216 |      1 | 3.286e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.40975420217514 (tsim/hr)                             [sph::Model][rank=0]
Info: next walltime check in 5.26s (niter = 16) global walltime = 901.61s (max_walltime = 923.28s)  [SPH][rank=0]
---------------- t = 4.902319544933469, dt = 0.002319551610969063 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1.57 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 288.94 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1217314369010318e-23,-1.5236374897313455e-24,-3.6160748474920227e-17)
    sum a = (-5.61978623275663e-23,6.575881598391687e-24,1.3479004019401445e-17)
    sum e = 3.1607703555703374e-09
    sum de = -2.593263686422474e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319558294568706 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.622068143893244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.904639096544439, dt = 0.002319558294568706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1.25 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 327.83 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (63.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.1087275396421484e-23,-1.508855682368478e-24,-3.612895775277545e-17)
    sum a = (-5.536572381606774e-23,7.239425091380717e-24,1.3932147074351108e-17)
    sum e = 3.1607702970875936e-09
    sum de = -2.4511559669797288e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195649797431777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+04 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.517437210118143 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.906958654839007, dt = 0.0023195649797431777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1.31 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 307.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0959848602683287e-23,-1.4912878443190854e-24,-3.6096115686557966e-17)
    sum a = (-5.603536147610153e-23,7.810250814519156e-24,1.4385301960033736e-17)
    sum e = 3.160770241879556e-09
    sum de = -2.3109164048076757e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195716673956703 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1356e+04 | 9216 |      1 | 2.939e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.41119024631389 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.90927821981875, dt = 0.0023195716673956703 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (2.4%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 1.37 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 295.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.50 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0828993186662619e-23,-1.4726394840998e-24,-3.606222238656245e-17)
    sum a = (-5.440996344531519e-23,7.379793393775931e-24,1.483835506763498e-17)
    sum e = 3.1607701899026494e-09
    sum de = -2.1725813689579282e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195783580962615 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.933e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.475363478306456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.911597791486146, dt = 0.0023195783580962615 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 315.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0704741939749584e-23,-1.4559078953875951e-24,-3.602727821481225e-17)
    sum a = (-5.385115302967644e-23,7.593712576196991e-24,1.5291197565606284e-17)
    sum e = 3.160770141112295e-09
    sum de = -2.0361859538026577e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195850525312245 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.928e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.516682153620454 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.913917369844243, dt = 0.0023195850525312245 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1.30 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 302.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.193033854166667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0580479689555796e-23,-1.4380099589156284e-24,-3.599128377955992e-17)
    sum a = (-5.209361880098984e-23,7.503427356638753e-24,1.5743714661434462e-17)
    sum e = 3.1607700954631096e-09
    sum de = -1.9017640264506216e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195917514818847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.067e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.230452217900858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.916236954896774, dt = 0.0023195917514818847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.7%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 1.32 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.4%)
   LB compute        : 316.65 us  (81.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0461679467927534e-23,-1.4208118310995185e-24,-3.5954239963019906e-17)
    sum a = (-5.181555049178189e-23,6.5240789778551175e-24,1.619579515915848e-17)
    sum e = 3.1607700529089457e-09
    sum de = -1.7693482978668938e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195972982719064 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.7771e+04 | 9216 |      1 | 3.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.162996307707285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.918556546648255, dt = 0.0023195972982719064 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 306.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
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.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0341772316255573e-23,-1.4067980527331736e-24,-3.5916147919251496e-17)
    sum a = (-5.168784421471257e-23,7.247431353538232e-24,1.6647328306076775e-17)
    sum e = 3.1607700134029245e-09
    sum de = -1.638970286323463e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195691257013643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.931e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.486297589262737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.920876143946527, dt = 0.0023195691257013643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.01 us   (2.0%)
   patch tree reduce : 5.18 us    (1.0%)
   gen split merge   : 1.23 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.3%)
   LB compute        : 466.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.0222023611826448e-23,-1.389155392374664e-24,-3.587700960303374e-17)
    sum a = (-5.153606606034109e-23,7.119873070595042e-24,1.709819301895861e-17)
    sum e = 3.160769976897982e-09
    sum de = -1.5106621542520616e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319541050624294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9755e+04 | 9216 |      1 | 3.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.96054852709206 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.923195713072229, dt = 0.002319541050624294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1.17 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 269.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.88 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (1.010274804846968e-23,-1.372806717832645e-24,-3.583682673638887e-17)
    sum a = (-5.1103468776573524e-23,6.722771270206872e-24,1.7548279147705888e-17)
    sum e = 3.1607699433456335e-09
    sum de = -1.3844528053285754e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023195130731200565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1564e+04 | 9216 |      1 | 2.920e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.59948644738758 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.925515254122853, dt = 0.0023195130731200565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (2.1%)
   patch tree reduce : 2.40 us    (0.6%)
   gen split merge   : 1.44 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 350.86 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.68 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.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.984656438121877e-24,-1.3576111871134846e-24,-3.5795601276888565e-17)
    sum a = (-4.894946543614203e-23,6.569533530643568e-24,1.7997472348601737e-17)
    sum e = 3.1607699126967894e-09
    sum de = -1.2603700654820228e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319485193121195 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1541e+04 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.578051757051565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.927834767195973, dt = 0.002319485193121195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1.24 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 260.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.873681749764771e-24,-1.3425542977318056e-24,-3.57533354514604e-17)
    sum a = (-5.0572620998311015e-23,6.296327846282148e-24,1.8445663489953415e-17)
    sum e = 3.1607698849017333e-09
    sum de = -1.138440434830561e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319457410436092 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1272e+04 | 9216 |      1 | 2.947e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.333603375211574 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.930154252389094, dt = 0.002319457410436092 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1.28 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 289.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.754421591001055e-24,-1.3282324275043913e-24,-3.571003173428889e-17)
    sum a = (-4.913550890710479e-23,5.8818015255763856e-24,1.8892739401201738e-17)
    sum e = 3.160769859910145e-09
    sum de = -1.0186893600113334e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319429724773736 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1346e+04 | 9216 |      1 | 2.940e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.400279842106382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.93247370979953, dt = 0.002319429724773736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 1.93 us    (0.6%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 312.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.642104502392149e-24,-1.3150967109420933e-24,-3.566569286610421e-17)
    sum a = (-4.8664021627845695e-23,6.806760137436528e-24,1.9338591347486178e-17)
    sum e = 3.1607698376711302e-09
    sum de = -9.01140984010565e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319402135770795 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.0565e+04 | 9216 |      1 | 3.015e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.69306284633736 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.934793139524304, dt = 0.002319402135770795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 279.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.529807219688597e-24,-1.2982550894223636e-24,-3.5620321835018894e-17)
    sum a = (-4.767945246742703e-23,5.6615758127920485e-24,1.978310782532381e-17)
    sum e = 3.1607698181332565e-09
    sum de = -7.85818278384445e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319374643020302 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1649e+04 | 9216 |      1 | 2.912e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.674564802741298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.937112541660075, dt = 0.002319374643020302 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1.42 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 284.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.420322375545375e-24,-1.2865277927963817e-24,-3.557392189001567e-17)
    sum a = (-4.801502502217547e-23,6.064799288426855e-24,2.0226175058495274e-17)
    sum e = 3.160769801244567e-09
    sum de = -6.7274302964481495e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193472461010564 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.739092914521652 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 4.20s (niter = 14) global walltime = 906.38s (max_walltime = 923.28s)  [SPH][rank=0]
---------------- t = 4.9394319163030955, dt = 0.0023193472461010564 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1.48 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 297.71 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.308573056223296e-24,-1.2719308405501557e-24,-3.552649654726113e-17)
    sum a = (-4.629271999747406e-23,6.1998601583511164e-24,2.0667689562156293e-17)
    sum e = 3.1607697869526213e-09
    sum de = -5.619358527864742e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023193199446070625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1131e+04 | 9216 |      1 | 2.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.204116924346405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.941751263549197, dt = 0.0023193199446070625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1.18 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 318.27 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.71 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.203223244986852e-24,-1.2572898751809198e-24,-3.547804954981169e-17)
    sum a = (-4.598803695278204e-23,7.176787265205171e-24,2.110753925498005e-17)
    sum e = 3.1607697752045154e-09
    sum de = -4.5341617936234345e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319292738176604 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1630e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.656044978558803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9440705834938035, dt = 0.002319292738176604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 307.21 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (9.096938154886449e-24,-1.2395437839833372e-24,-3.542858491130548e-17)
    sum a = (-4.663408687986675e-23,6.72017422086727e-24,2.1545616796330625e-17)
    sum e = 3.1607697659469093e-09
    sum de = -3.4720224040812038e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192656265203716 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8876e+04 | 9216 |      1 | 3.192e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.160677804758414 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.94638987623198, dt = 0.0023192656265203716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 309.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.81 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.988049688560011e-24,-1.2245155031316143e-24,-3.5378106887870904e-17)
    sum a = (-4.4660218248633934e-23,5.569672835881179e-24,2.198181350353495e-17)
    sum e = 3.160769759126055e-09
    sum de = -2.4331118102475894e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319238609448062 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1063e+04 | 9216 |      1 | 2.967e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.141757230672294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.948709141858501, dt = 0.002319238609448062 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 306.15 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.67 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1932508680555554
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.886746883984326e-24,-1.2129510550607691e-24,-3.5326619989242184e-17)
    sum a = (-4.374335007402907e-23,5.788958593407236e-24,2.241602569521145e-17)
    sum e = 3.160769754687828e-09
    sum de = -1.4175886657377057e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023192116868929937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1618e+04 | 9216 |      1 | 2.915e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.644479682041464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.951028380467949, dt = 0.0023192116868929937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1.88 us    (0.6%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 288.44 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (45.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1935763888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.786381558928752e-24,-1.1992563718362456e-24,-3.5274128959626874e-17)
    sum a = (-4.4316896083251537e-23,5.731694769551197e-24,2.2848147150506077e-17)
    sum e = 3.160769752577743e-09
    sum de = -4.2560045007298144e-16
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191848589343023 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1717e+04 | 9216 |      1 | 2.906e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.734079147166977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.9533475921548415, dt = 0.0023191848589343023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.8%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 1.42 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.4%)
   LB compute        : 346.54 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1935763888888884
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.682889101483325e-24,-1.1859952178733694e-24,-3.52206387921025e-17)
    sum a = (-4.3044608736405e-23,5.452982218255184e-24,2.3278075138865956e-17)
    sum e = 3.160769752740994e-09
    sum de = 5.427168706938119e-16
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191581258162324 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.572683390035085 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.955666777013776, dt = 0.0023191581258162324 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.9%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1.39 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 295.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1937934027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.584559383366957e-24,-1.173717757209764e-24,-3.5166154713900835e-17)
    sum a = (-4.390625034458515e-23,5.6102317539808375e-24,2.370570154496148e-17)
    sum e = 3.1607697551224764e-09
    sum de = 1.4872381264370695e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191314879642765 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9955e+04 | 9216 |      1 | 3.077e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.136490614717804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.957985935139592, dt = 0.0023191314879642765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 40.75 us   (6.1%)
   patch tree reduce : 3.28 us    (0.5%)
   gen split merge   : 1.39 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.2%)
   LB compute        : 562.67 us  (84.1%)
   LB move op cnt    : 0
   LB apply          : 25.92 us   (3.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1937934027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.481740326703583e-24,-1.1604720078399412e-24,-3.511068220829557e-17)
    sum a = (-4.2434949959752926e-23,6.1999916475561085e-24,2.413092884997451e-17)
    sum e = 3.160769759666808e-09
    sum de = 2.4078504468687513e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023191049459979386 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.9619e+04 | 9216 |      1 | 3.112e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.832302733179343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.960305066627557, dt = 0.0023191049459979386 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1.16 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 323.26 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 8.87 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.92 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.1937934027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.385052298075482e-24,-1.145467934205874e-24,-3.505422697274367e-17)
    sum a = (-4.211475338952799e-23,6.510570250075311e-24,2.455365411747639e-17)
    sum e = 3.1607697663183593e-09
    sum de = 3.304451844414918e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190785007397323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.045e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.416404129880657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.962624171573554, dt = 0.0023190785007397323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.4%)
   patch tree reduce : 2.68 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 336.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 5.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.1937934027777777
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.287759089005997e-24,-1.1299863181871495e-24,-3.499679494919279e-17)
    sum a = (-4.11737308130153e-23,6.102537790587637e-24,2.497377680783909e-17)
    sum e = 3.1607697750212817e-09
    sum de = 4.176951453119985e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002319052153220505 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8887e+04 | 9216 |      1 | 3.190e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.16873812112449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.9649432500742945, dt = 0.002319052153220505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.08 us    (2.2%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1.38 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.4%)
   LB compute        : 344.16 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.66 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.193346538837509e-24,-1.1163202434925825e-24,-3.4938392309651586e-17)
    sum a = (-4.0497092865766795e-23,5.570011461846336e-24,2.539120119902851e-17)
    sum e = 3.1607697857195307e-09
    sum de = 5.025269532360965e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023190259046814796 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1213e+04 | 9216 |      1 | 2.953e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.27553193102874 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.967262302227515, dt = 0.0023190259046814796 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 316.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.100203767267854e-24,-1.1040317795482246e-24,-3.487902544184804e-17)
    sum a = (-4.097034507125858e-23,6.1626448621901144e-24,2.5805830286588073e-17)
    sum e = 3.1607697983568913e-09
    sum de = 5.849337447390044e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.12e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189997565744285 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50328848989857 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.969581328132197, dt = 0.0023189997565744285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1.36 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 318.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.75 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (8.004627069995755e-24,-1.0890409098510602e-24,-3.481870095996643e-17)
    sum a = (-4.0072582993352294e-23,4.558821514139185e-24,2.6217569293980177e-17)
    sum e = 3.1607698128770043e-09
    sum de = 6.649097503695565e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189737105517878 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.545563561722915 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 3.00s (niter = 10) global walltime = 910.58s (max_walltime = 923.28s)  [SPH][rank=0]
---------------- t = 4.971900327888771, dt = 0.0023189737105517878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.8%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1.22 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 297.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.91277168227414e-24,-1.0803703246181143e-24,-3.4757425694669605e-17)
    sum a = (-4.064655813052411e-23,5.440980389774428e-24,2.662632495275049e-17)
    sum e = 3.160769829223391e-09
    sum de = 7.424502917358501e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.11e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023189477684607495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.922e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.572337256403458 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.974219301599323, dt = 0.0023189477684607495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.52 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 285.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.817879389064844e-24,-1.0667262564850521e-24,-3.4695206690984113e-17)
    sum a = (-3.948238021772674e-23,5.591141612039341e-24,2.7032004972135668e-17)
    sum e = 3.1607698473394815e-09
    sum de = 8.175517481993518e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002318921932328401 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.945e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.349299608430314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.976538249367784, dt = 0.002318921932328401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1.45 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 315.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.70 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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.727652486894594e-24,-1.0534981123644334e-24,-3.463205120631084e-17)
    sum a = (-3.846978900221576e-23,5.512237360845401e-24,2.7434517025407058e-17)
    sum e = 3.1607698671686336e-09
    sum de = 8.902115520200427e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.10e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188962043479457 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.022e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.62576108129581 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.978857171300112, dt = 0.0023188962043479457 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1.55 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 263.60 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.639617438250237e-24,-1.0408223329375887e-24,-3.4567966711947834e-17)
    sum a = (-3.8209595522590194e-23,4.6345642476909214e-24,2.783377548403805e-17)
    sum e = 3.1607698886541608e-09
    sum de = 9.604281979597847e-15
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.00231887058686067 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1705e+04 | 9216 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71939192436367 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.98117606750446, dt = 0.00231887058686067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 315.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.5512302846218e-24,-1.0310932320962551e-24,-3.4502960869219796e-17)
    sum a = (-3.8419527116066554e-23,4.201096879497859e-24,2.822969206135147e-17)
    sum e = 3.1607699117393576e-09
    sum de = 1.0282012573255117e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.09e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188450823353707 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1598e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.621745262469464 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.983494938091321, dt = 0.0023188450823353707 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1.99 us    (0.6%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 294.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.94 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.461971671157768e-24,-1.0219142952925452e-24,-3.4437041546975527e-17)
    sum a = (-3.719322578046882e-23,5.47805209312161e-24,2.8622182534467815e-17)
    sum e = 3.16076993636752e-09
    sum de = 1.0935312608981038e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023188196933463362 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 2.8033e+04 | 9216 |      1 | 3.288e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.391811822482826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.985813783173657, dt = 0.0023188196933463362 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1.17 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 323.13 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.377202396240743e-24,-1.0076716486865488e-24,-3.437021680415428e-17)
    sum a = (-3.642583057291779e-23,5.0241125709245406e-24,2.9011162975478037e-17)
    sum e = 3.1607699624819735e-09
    sum de = 1.1564197734399578e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.08e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023187944225498214 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1514e+04 | 9216 |      1 | 2.924e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.54496769310058 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.988132602867003, dt = 0.0023187944225498214 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 1.21 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 285.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.293608271708082e-24,-9.965759403757586e-25,-3.4302494893553327e-17)
    sum a = (-3.641079789075377e-23,4.9159918585126066e-24,2.939655265063855e-17)
    sum e = 3.16076999002609e-09
    sum de = 1.2168694576999298e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002318769272659517 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1775e+04 | 9216 |      1 | 2.900e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.781265651586324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.990451397289553, dt = 0.002318769272659517 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1.19 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 274.83 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.209186700462836e-24,-9.852557651376181e-25,-3.4233884250864257e-17)
    sum a = (-3.568864267201652e-23,4.7106799924601665e-24,2.977827162045779e-17)
    sum e = 3.1607700189433203e-09
    sum de = 1.2748838751895103e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.07e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023187442464214893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1745e+04 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.753923974913338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.992770166562212, dt = 0.0023187442464214893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.4%)
   LB compute        : 297.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.127256271979949e-24,-9.745737801831206e-25,-3.416439349564129e-17)
    sum a = (-3.596675719500364e-23,5.049339517623709e-24,3.015624441665925e-17)
    sum e = 3.1607700491772105e-09
    sum de = 1.3304675599970967e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002318719346588989 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1591e+04 | 9216 |      1 | 2.917e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.614223896792822 (tsim/hr)                            [sph::Model][rank=0]
Info: next walltime check in 2.39s (niter = 8) global walltime = 913.55s (max_walltime = 923.28s)  [SPH][rank=0]
---------------- t = 4.995088910808634, dt = 0.002318719346588989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 24.52 us   (7.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1.33 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.5%)
   LB compute        : 269.81 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.53 us    (65.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (7.04357412120127e-24,-9.624833752923074e-25,-3.4094031417093834e-17)
    sum a = (-3.521660742937596e-23,4.907475319210195e-24,3.0530392230817095e-17)
    sum e = 3.160770080671425e-09
    sum de = 1.3836260960980875e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.06e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186945758979305 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 2.903e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.756958540352247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 4.997407630155223, dt = 0.0023186945758979305 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 1.14 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.5%)
   LB compute        : 271.94 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.962730816856724e-24,-9.512468249878855e-25,-3.402280699044835e-17)
    sum a = (-3.444724043391409e-23,4.0148283914437175e-24,3.09006433737844e-17)
    sum e = 3.1607701133697724e-09
    sum de = 1.4343659635934725e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.002318669937043143 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.1622e+04 | 9216 |      1 | 2.914e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.64094682783818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 4.999726324731121, dt = 0.00027367526887722704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1.49 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 271.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 3.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954227481491217e-24,-9.51231420394832e-25,-3.401392099887797e-17)
    sum a = (-3.4688725035276235e-23,5.8150627766643946e-24,3.0941969336784564e-17)
    sum e = 3.1607701178755195e-09
    sum de = 1.4390008828698114e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.00231866710029975 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+======+========+===========+======+=============+=============+=============+
| 0    | 3.2433e+04 | 9216 |      1 | 2.842e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4671838842743656 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 2199                                                    [SPH][rank=0]
Info: time since start : 914.4177009340001 (s)                                        [SPH][rank=0]
[Simulation] Triggering callback "analysis_plots" (counter = 50):
   -> t = 4.999999999999998 >= 4.999999999999998
--------------------------------
tfinal = 18.836585265636796
18.225000000000033
18.250000000000032
18.27500000000003
18.30000000000003
18.325000000000028
18.350000000000026
18.375000000000025
18.400000000000023
18.425000000000022
18.45000000000002
18.47500000000002
18.500000000000018
18.525000000000016
18.550000000000015
18.575000000000014
18.600000000000012
18.62500000000001
18.65000000000001
18.675000000000008
18.700000000000006
18.725000000000005
18.750000000000004
18.775000000000002
18.8
18.825
tfinal = 18.836585265636796
18.225000000000033
18.250000000000032
18.27500000000003
18.30000000000003
18.325000000000028
18.350000000000026
18.375000000000025
18.400000000000023
18.425000000000022
18.45000000000002
18.47500000000002
18.500000000000018
18.525000000000016
18.550000000000015
18.575000000000014
18.600000000000012
18.62500000000001
18.65000000000001
18.675000000000008
18.700000000000006
18.725000000000005
18.750000000000004
18.775000000000002
18.8
18.825
tfinal = 18.836585265636796
18.225000000000033
18.250000000000032
18.27500000000003
18.30000000000003
18.325000000000028
18.350000000000026
18.375000000000025
18.400000000000023
18.425000000000022
18.45000000000002
18.47500000000002
18.500000000000018
18.525000000000016
18.550000000000015
18.575000000000014
18.600000000000012
18.62500000000001
18.65000000000001
18.675000000000008
18.700000000000006
18.725000000000005
18.750000000000004
18.775000000000002
18.8
18.825
tfinal = 18.836585265636796
18.225000000000033
18.250000000000032
18.27500000000003
18.30000000000003
18.325000000000028
18.350000000000026
18.375000000000025
18.400000000000023
18.425000000000022
18.45000000000002
18.47500000000002
18.500000000000018
18.525000000000016
18.550000000000015
18.575000000000014
18.600000000000012
18.62500000000001
18.65000000000001
18.675000000000008
18.700000000000006
18.725000000000005
18.750000000000004
18.775000000000002
18.8
18.825
tfinal = 18.836585265636796
18.225000000000033
18.250000000000032
18.27500000000003
18.30000000000003
18.325000000000028
18.350000000000026
18.375000000000025
18.400000000000023
18.425000000000022
18.45000000000002
18.47500000000002
18.500000000000018
18.525000000000016
18.550000000000015
18.575000000000014
18.600000000000012
18.62500000000001
18.65000000000001
18.675000000000008
18.700000000000006
18.725000000000005
18.750000000000004
18.775000000000002
18.8
18.825
Info: collected : 1 patches                                                [PatchScheduler][rank=0]
[3.91456779e-15 7.24638932e-15 4.42021543e-15 ... 9.29699145e-15
 7.01372612e-16 1.71289076e-22]
(9216, 3)
[[3.91456779e-15 7.24638932e-15 4.42021543e-15 3.84070971e-16
  7.03663974e-22]
 [3.18369048e-06 4.97441391e-14 1.18887715e-13 1.76562606e-16
  5.27883326e-22]
 [7.02074587e-15 2.62583435e-14 1.17477198e-14 1.11193991e-15
  9.52235098e-22]
 ...
 [4.25840992e-05 5.23931947e-05 4.74479711e-05 8.11792476e-13
  2.21142076e-16]
 [3.00988300e-05 2.68743462e-05 1.41523762e-06 4.62417978e-14
  1.13445514e-14]
 [7.42352503e-15 9.86189640e-15 9.29699145e-15 7.01372612e-16
  1.71289076e-22]]
compute original rho
0.0006842839839185824 0.0
0.0011560985738716175 0.0
0.002111500543394179 0.0
0.004437418711226742 0.0
0.012157077676602603 0.0
--------------------------------
[Simulation] Advancing callback "analysis_plots"
   -> t = 4.999999999999998 -> 5.099999999999998

[Simulation] Evolve until next trigger(s) :
   -> t = 5.0 (current = 4.999999999999998)
   -> iter = None (current = 2198)
   -> walltime = 923.2839111720001 (current = 920.587672999)

Info: evolve_until (target_time = 5.00s, niter_max = -1, max_walltime = 923.28s)      [SPH][rank=0]
---------------- t = 4.999999999999998, dt = 1.7763568394002505e-15 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 9216.0 min = 9216.0 factor = 1
 - strategy "round robin" : max = 8755.2 min = 8755.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 9216
    max = 9216
    avg = 9216
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (2.3%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 300.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 5.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 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.194010416666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (6.954121849995993e-24,-9.510047528113313e-25,-3.4013915343924485e-17)
    sum a = (-3.484911985880499e-23,4.794999233194415e-24,3.094194060065616e-17)
    sum e = 3.1607701178817494e-09
    sum de = 1.4389826161960413e-14
Info: CFL detail :                                                             [sph::Model][rank=0]
+=============+==========+
|     key     |  value   |
+=============+==========+
|     courant | 2.32e-03 |
|       force | 2.05e-01 |
| dust1_fluid | 2.36e-03 |
|  dust_drift | 1.53e-02 |
+-------------+----------+
Info: cfl dt = 0.0023186671010734777 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf 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 | 9216 |      1 | 3.099e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.063310823579809e-11 (tsim/hr)                         [sph::Model][rank=0]
Info: next walltime check in 0.31s (niter = 1) global walltime = 920.90s (max_walltime = 923.28s)  [SPH][rank=0]
Info: iteration since start : 2200                                                    [SPH][rank=0]
Info: time since start : 920.898242339 (s)                                            [SPH][rank=0]

Build animations from plot sequences#

929 glob_str = f"{dump_folder}/plots/vert_slice_dens_*.png"
930 ani = show_image_sequence(glob_str)
931
932 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
933 ani.save("_to_trash/dustysettle_vert_slice_tva.gif", writer=writer)
934
935 if shamrock.sys.world_rank() == 0:
936     plt.show()
940 glob_str = f"{dump_folder}/plots/vert_slice_s_*.png"
941 ani = show_image_sequence(glob_str)
942
943 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
944 ani.save("_to_trash/dustysettle_vert_slice_s_tva.gif", writer=writer)
945
946 if shamrock.sys.world_rank() == 0:
947     plt.show()

Plot dust mass conservation history#

 953 t, dust_mass = load_data_from_json("dust_mass.json", "dust_mass")
 954 dust_mass = np.array(dust_mass)
 955
 956 # tinject = first non nan
 957 iinject = np.argmax(~np.isnan(dust_mass)[:, 0])
 958 tinject = np.array(t)[iinject]
 959
 960 t = np.array(t) - tinject
 961
 962 St = np.zeros(ndust)
 963
 964 for k in range(ndust):
 965     t_dyn = 1
 966     ts = shamrock.phys.epstein_stopping_time(
 967         rho_grain=mrn_distribution.rho_grains[k],
 968         s_grain=mrn_distribution.grain_size[k],
 969         rho=rho_i,
 970         cs=cs,
 971         gamma=gamma,
 972     )
 973     St[k] = ts / t_dyn
 974
 975 plt.figure()
 976 for k in range(ndust):
 977     mh = dust_mass[:, k]
 978     deviation = (mh / mh[iinject]) - 1
 979
 980     plt.plot(
 981         t,
 982         deviation,
 983         label=f"dust {k}, s = {mrn_distribution.grain_size_si[k]:.1e} [m], St = {St[k]:.1e}",
 984     )
 985
 986 total_dust_mass = np.sum(dust_mass, axis=1)
 987 plt.plot(
 988     t,
 989     (total_dust_mass / total_dust_mass[iinject]) - 1,
 990     color="grey",
 991     label="total dust mass",
 992     linestyle="--",
 993 )
 994
 995 plt.xlabel("t")
 996 plt.ylabel("$\\delta M_{dust} / M_{dust,0}$")
 997 plt.yscale("symlog", linthresh=1e-8)
 998 plt.title("Dust mass conservation")
 999 plt.legend()
1000 plt.tight_layout()
1001 plt.savefig(f"{dump_folder}/plots/dust_mass_history.png")
1002 plt.show()
Dust mass conservation

Plot L2 error history#

1009 t, l2_error = load_data_from_json("l2_error.json", "l2_error")
1010 l2_error = np.array(l2_error)
1011
1012 t = np.array(t) - tinject
1013
1014 print(t)
1015 print(l2_error)
1016
1017 plt.figure()
1018 for k in range(ndust):
1019     plt.plot(
1020         t,
1021         l2_error[:, k],
1022         label=f"dust {k}, s = {mrn_distribution.grain_size_si[k]:.1e} [m], St = {St[k]:.1e}",
1023     )
1024 plt.legend()
1025 plt.xlabel("t")
1026 plt.ylabel("L2 error")
1027 plt.yscale("log")
1028 plt.tight_layout()
1029 plt.savefig(f"{dump_folder}/plots/l2_error.png")
1030 plt.show()
run dustysettle tva
[-2.  -1.9 -1.8 -1.7 -1.6 -1.5 -1.4 -1.3 -1.2 -1.1 -1.  -0.9 -0.8 -0.7
 -0.6 -0.5 -0.4 -0.3 -0.2 -0.1  0.   0.1  0.2  0.3  0.4  0.5  0.6  0.7
  0.8  0.9  1.   1.1  1.2  1.3  1.4  1.5  1.6  1.7  1.8  1.9  2.   2.1
  2.2  2.3  2.4  2.5  2.6  2.7  2.8  2.9  3. ]
[[           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [           nan            nan            nan            nan
             nan]
 [2.69453802e-06 4.26542545e-06 6.74572750e-06 1.06638847e-05
  1.68673533e-05]
 [3.47626154e-06 5.60144780e-06 1.18250365e-05 3.47403881e-05
  8.93218197e-05]
 [4.44549491e-06 7.39970778e-06 1.93542921e-05 6.35887387e-05
  1.53625212e-04]
 [4.99691240e-06 9.07721575e-06 2.72886285e-05 8.41625787e-05
  1.93123233e-04]
 [5.01190087e-06 1.07217707e-05 3.53219779e-05 9.67516521e-05
  2.24294999e-04]
 [5.16789934e-06 1.28807482e-05 4.24555855e-05 1.06256660e-04
  2.47539201e-04]
 [5.66161729e-06 1.52433065e-05 4.80551393e-05 1.15842058e-04
  2.71661800e-04]
 [6.37091801e-06 1.78760664e-05 5.36876255e-05 1.24929564e-04
  2.92373941e-04]
 [7.18990644e-06 2.04637858e-05 5.76627276e-05 1.32863696e-04
  3.09987338e-04]
 [7.45448005e-06 2.22200089e-05 6.09217976e-05 1.39205925e-04
  3.27185245e-04]
 [8.07646420e-06 2.39175358e-05 6.30509392e-05 1.44927107e-04
  3.43159395e-04]
 [8.67789022e-06 2.54719012e-05 6.49031063e-05 1.50086630e-04
  3.60347763e-04]
 [9.22757003e-06 2.75966304e-05 6.71633659e-05 1.54907729e-04
  3.75803151e-04]
 [9.83347021e-06 2.88687639e-05 6.95057461e-05 1.60239881e-04
  3.90702270e-04]
 [1.03456882e-05 3.01234371e-05 7.15041945e-05 1.65622825e-04
  4.04171527e-04]
 [1.07599154e-05 3.14403653e-05 7.40957196e-05 1.71469248e-04
  4.19601268e-04]
 [1.11959746e-05 3.21397509e-05 7.59424735e-05 1.77023602e-04
  4.34624797e-04]
 [1.17931720e-05 3.32734098e-05 7.81682774e-05 1.80401681e-04
  4.50514754e-04]
 [1.27951009e-05 3.49800658e-05 8.03979011e-05 1.85223018e-04
  4.65870419e-04]
 [1.39770413e-05 3.62037156e-05 8.21236785e-05 1.89090365e-04
  4.81739456e-04]
 [1.40243166e-05 3.63587576e-05 8.43305868e-05 1.92770284e-04
  4.95447108e-04]
 [1.45855325e-05 3.73689976e-05 8.57342038e-05 1.96021986e-04
  5.09112541e-04]
 [1.43815353e-05 3.74430496e-05 8.70797407e-05 1.99919026e-04
  5.23409366e-04]
 [1.52244768e-05 3.85063684e-05 8.86043357e-05 2.04742792e-04
  5.36994926e-04]
 [1.53214312e-05 3.91146163e-05 9.02212521e-05 2.09041880e-04
  5.52743722e-04]
 [1.59641909e-05 4.00597960e-05 9.13575421e-05 2.12919168e-04
  5.67639988e-04]
 [1.67907344e-05 4.03857251e-05 9.31196928e-05 2.18088197e-04
  5.84894456e-04]
 [1.69554467e-05 4.09202390e-05 9.42646627e-05 2.22489266e-04
  5.99071730e-04]
 [1.78001059e-05 4.09299328e-05 9.57509393e-05 2.25015707e-04
  6.13321034e-04]
 [1.79149719e-05 4.18966690e-05 9.60315309e-05 2.28936200e-04
  6.30540322e-04]
 [1.82357271e-05 4.25041268e-05 9.77361194e-05 2.32348577e-04
  6.45273103e-04]]
1034 print("##### Test result #####")
1035 result = {
1036     "t": float(t[-1]),
1037     "l2_error": l2_error[-1].tolist(),
1038     "dust_mass": (dust_mass[-1] / dust_mass[iinject] - 1).tolist(),
1039     "St": St.tolist(),
1040     "lz": lz,
1041 }
1042 print(result)
1043
1044 json.dump(result, open(f"{dump_folder}/test_result.json", "w"), indent=4)
##### Test result #####
{'t': 2.999999999999998, 'l2_error': [1.8235727121353532e-05, 4.250412680512145e-05, 9.773611938401701e-05, 0.0002323485765513897, 0.0006452731034515657], 'dust_mass': [5.882041393956428e-07, 5.898483605992766e-07, 6.039341644559215e-07, 7.103833632449152e-07, 1.4652819675387008e-06], 'St': [0.0009689528672611058, 0.0024338995600454746, 0.0061136792805353635, 0.015356868031378033, 0.038574708438501706], 'lz': 64}

Total running time of the script: (18 minutes 15.205 seconds)

Estimated memory usage: 3419 MB

Gallery generated by Sphinx-Gallery