Dusty diffusion SPH test#

Test that the diffusion of epsilon is correct when the momentum & energy equation are disabled.

Here are the initial condition for the dustydiffuse test

\[\rho(\mathbf{r}, 0) = \rho_0\]
\[\epsilon(\mathbf{r}, 0) = \epsilon_0 \max \left(0, 1 - \left(\frac{r}{r_c}\right)^2\right),\quad r = \sqrt{x^2 + y^2 + z^2}\]

with \(\rho_0 = 1\), \(\epsilon_0 = 0.1\), \(r_c = 0.25\).

Then we use the dust TVA solver but force \(d \mathbf{v} / dt = 0\) and \(d u / dt = 0\). In that context the epsilon equation becomes:

\[\frac{d \epsilon}{dt} = \nabla \cdot \left( \epsilon \eta \nabla \epsilon \right)\]

With the initial condition above, the analytical solution is:

\[\epsilon(r, t) = A\,|10\eta t + B|^{-3/5} - \frac{r^2}{10\eta t + B},\]

where

\[B = \frac{r_c^2}{\epsilon_0},\qquad A = \epsilon_0 B^{3/5}.\]
43 import os
44
45 import matplotlib as mpl
46 import matplotlib.pyplot as plt
47 import numpy as np
48
49 import shamrock
50
51 shamrock.enable_experimental_features()
52
53 # If we use the shamrock executable to run this script instead of the python interpreter,
54 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
55 if not shamrock.sys.is_initialized():
56     shamrock.change_loglevel(1)
57     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Sim parameters

63 rho = 1
64 epsilon_0 = 0.1
65 cs_g = 1
66 ts = 0.1
67 rc = 0.25
68
69
70 bmin = (-0.5, -0.5, -0.5)
71 bmax = (0.5, 0.5, 0.5)
72
73 N_target = 3e4
74
75
76 def func_rho_t(r):
77     return rho
78
79
80 def func_eps(pos):
81     r = np.sqrt(pos[0] ** 2 + pos[1] ** 2 + pos[2] ** 2)
82     return epsilon_0 * max(0, 1 - (r / rc) ** 2)
83
84
85 def func_s(r):
86     rho_t = func_rho_t(r)
87     eps = func_eps(r)
88     return np.sqrt(rho_t * eps)

Use shamrock documentation style for matplotlib

93 shamrock.matplotlib.set_shamrock_mpl_style()

Setup

 98 xm, ym, zm = bmin
 99 xM, yM, zM = bmax
100 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
101
102 part_vol = vol_b / N_target
103
104 # lattice volume
105 HCP_PACKING_DENSITY = 0.74
106 part_vol_lattice = HCP_PACKING_DENSITY * part_vol
107
108 dr = (part_vol_lattice / ((4.0 / 3.0) * np.pi)) ** (1.0 / 3.0)
109
110 bmin, bmax = shamrock.math.get_ideal_hcp_box(dr, bmin, bmax)
111 xm, ym, zm = bmin
112 xM, yM, zM = bmax
113
114
115 vol_b = (xM - xm) * (yM - ym) * (zM - zm)
116 totmass = rho * vol_b
117
118
119 pmass = -1
120
121 ctx = shamrock.Context()
122 ctx.pdata_layout_new()
123
124 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel="M6")
125
126 cfg = model.gen_default_config()
127 # cfg.set_artif_viscosity_Constant(alpha_u = 1, alpha_AV = 1, beta_AV = 2)
128 # cfg.set_artif_viscosity_VaryingMM97(alpha_min = 0.1,alpha_max = 1,sigma_decay = 0.1, alpha_u = 1, beta_AV = 2)
129 cfg.set_artif_viscosity_VaryingCD10(
130     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
131 )
132 cfg.set_dust_mode_monofluid_tva(nvar=1, pure_diffusion_mode=True)
133 cfg.set_dust_drag_constant([ts])
134 cfg.set_boundary_periodic()
135 cfg.set_eos_isothermal(cs_g)
136 cfg.print_status()
137 model.set_solver_config(cfg)
138
139 scheduler_split_val = int(2e7)
140 scheduler_merge_val = 1
141
142 model.init_scheduler(scheduler_split_val, scheduler_merge_val)
143
144
145 model.resize_simulation_box(bmin, bmax)
146
147 setup = model.get_setup()
148 gen = setup.make_generator_lattice_hcp(dr, bmin, bmax)
149 setup.apply_setup(gen, insert_step=scheduler_split_val)
150
151
152 model.set_field_value_lambda_f64("s_j", func_s, 0)
153
154 pmass = model.total_mass_to_part_mass(totmass)
155 model.set_particle_mass(pmass)
156
157 model.set_cfl_cour(0.3)
158 model.set_cfl_force(0.3)
159
160 model.timestep()
161
162 t_snapshot = [0.0, 0.1, 0.3, 1, 3, 10]
163 snapshots = []
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "ballabio_ts_limiter": false,
            "drag_mode": {
                "stopping_times": [
                    0.1
                ],
                "type": "constant_stopping_times"
            },
            "evol_mode": {
                "type": "none"
            },
            "mode": {
                "C_1_fluid": 0.1,
                "C_drift": 1.0,
                "cfl_density_threshold": 2.220446049250313e-16,
                "clamp_dust_frac": null,
                "dust_corrected_av": false,
                "ensure_s_j_positivity": true,
                "ndust": 1,
                "pure_diffusion_mode": true,
                "smooth_s_positivity_limiter": false,
                "type": "monofluid_tva"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "cs": 1.0,
            "eos_type": "isothermal"
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "neigh_cache_strategy": "two_stage",
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null
    }
]
------------------------------------

---------------------------- 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 = 30464 ( 3.0e+04 ) Ntotal = 30464 ( 3.0e+04 rank min = 7.8e+06 max = 3.0e+04) rate = 3.046400e+04 N.s^-1
SPH setup: the generation step took : 0.008321731 s
SPH setup: final particle count = 30464 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     : 19.29 us   (83.6%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (0.1%)
   patch tree reduce : 1.46 us    (0.2%)
   gen split merge   : 861.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.1%)
   LB compute        : 681.15 us  (98.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.5%)
Info: patch count stable after 1 runs npatch = 1                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
SPH setup: injected        30464 / 30464 => 100.0% | ranks with patchs = 1 / 1  <- global loop -> (msg count : 0)
SPH setup: the injection step took : 0.009859368 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 |   8.7% 0.0% |     2.15 GB |     2.15 GB |
+------+--------------------+-------+-------------+-------------+-------------+
SPH setup: the setup took : 0.022686625000000002 s
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 761.00 ns  (0.3%)
   LB compute        : 277.56 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 2.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (65.6%)
Info: defaulting reduction implementation to impl : {"implementation":"group_reduction","parameters":{"group_size":128}}  [algs][rank=0]
Warning: High interface/patch volume 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.4324120273109244
Info: defaulting sort by key (pow2 len) implementation to impl : {"implementation":"bitonic_sort","parameters":{"stencil_size":16}}  [algs][rank=0]
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.01986399682184233 unconverged cnt = 30464
Warning: High interface/patch volume 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.47108061974789917
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.021850396504026565 unconverged cnt = 30464
Warning: High interface/patch volume 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.47108061974789917
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.024035436154429223 unconverged cnt = 30464
Warning: High interface/patch volume 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.5394235819327732
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.026438979769872147 unconverged cnt = 30464
Warning: High interface/patch volume 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.5610884978991596
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.029082877746859363 unconverged cnt = 30464
Warning: High interface/patch volume 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.736705619747899
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0319911655215453 unconverged cnt = 30464
Warning: High interface/patch volume 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.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 3.217621890927013e-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    | 3.3672e+04 | 30464 |      1 | 9.047e-01 | 0.0% |   0.4% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

Field recovery for plots

168 def get_field_results(model):
169     def custom_getter_r(size: int, dic_out: dict) -> np.array:
170         return np.sqrt(
171             dic_out["xyz"][:, 0] ** 2 + dic_out["xyz"][:, 1] ** 2 + dic_out["xyz"][:, 2] ** 2
172         )
173
174     r_field = model.compute_field("custom", "f64", custom_getter_r)
175     rho_field = model.compute_field("rho", "f64")
176     s_j_field = model.compute_field("s_j", "f64")
177     dsdt_field = model.compute_field("ds_j_dt", "f64")
178
179     def internal_eps(size: int, s: np.array, rho: np.array) -> np.array:
180         return (s**2) / rho
181
182     eps_field = shamrock.map_fields_f64(internal_eps, s=s_j_field, rho=rho_field)
183
184     def internal_rho_g(size: int, rho: np.array, eps: np.array) -> np.array:
185         return rho * (1 - eps)
186
187     def internal_rho_d(size: int, rho: np.array, eps: np.array) -> np.array:
188         return rho * eps
189
190     rho_g_field = shamrock.map_fields_f64(internal_rho_g, rho=rho_field, eps=eps_field)
191     rho_d_field = shamrock.map_fields_f64(internal_rho_d, rho=rho_field, eps=eps_field)
192
193     r_data = np.asarray(r_field.collect_data())
194     rho_data = np.asarray(rho_field.collect_data())
195     rho_g_data = np.asarray(rho_g_field.collect_data())
196     rho_d_data = np.asarray(rho_d_field.collect_data())
197     dsdt_data = np.asarray(dsdt_field.collect_data())
198     return r_data, rho_data, rho_g_data, rho_d_data, dsdt_data

Analytical solutions

203 r_ana = np.linspace(0, 0.5, 100)
204
205
206 def analytic_eps(r, t, eta=0.1):
207
208     B = (rc**2) / epsilon_0  # that frac is in the wrong way in PL15
209     A = epsilon_0 * (B ** (3.0 / 5.0))
210
211     return A * np.abs(10 * eta * t + B) ** (-3.0 / 5.0) - (r**2 / (10 * eta * t + B))
212
213
214 def analytic_eps_curve(t):
215     return np.array([analytic_eps(r, t) for r in r_ana])
216
217
218 def analytic_dsdt(t):
219     dt = 1e-4
220     deps_dt = (analytic_eps_curve(t + dt) - analytic_eps_curve(t - dt)) / (2 * dt)
221     s = np.sqrt(rho * analytic_eps_curve(t))
222     return deps_dt / (2 * s + 1e-9)

Perform the simulation

227 os.makedirs("_to_trash", exist_ok=True)
228 for t in [0.1 * i for i in range(20)]:
229     model.evolve_until(t)
230     r_data, rho_data, rho_g_data, rho_d_data, dsdt_data = get_field_results(model)
231     eps = rho_d_data / rho_data
232
233     if any(np.isclose(t, ts, atol=1e-6) for ts in t_snapshot):
234         snapshots.append((t, r_data, eps))
235
236     fig, axs = plt.subplots(1, 2, figsize=(10, 5))
237     axs[0].plot(r_data, eps, ".", label="eps")
238     axs[0].plot(r_ana, analytic_eps_curve(t), "--", color="black", label="analytic")
239     axs[0].set_xlabel(r"$r$")
240     axs[0].set_ylabel(r"$\epsilon$")
241     axs[0].set_xlim(0, 0.5)
242     axs[0].set_ylim(0, 0.11)
243     axs[0].text(
244         0.02,
245         0.98,
246         f"t = {t:.2f}",
247         transform=axs[0].transAxes,
248         verticalalignment="top",
249         horizontalalignment="left",
250         bbox=dict(boxstyle="round", facecolor="wheat", alpha=0.5),
251     )
252     axs[1].plot(r_data, dsdt_data, ".", label="ds/dt")
253     axs[1].plot(r_ana, analytic_dsdt(t), "--", color="black", label="analytic")
254     axs[1].set_xlabel(r"$r$")
255     axs[1].set_ylabel(r"$\frac{d s}{d t}$")
256     axs[1].set_xlim(0, 0.5)
257     axs[1].set_ylim(-0.16, 0.4)
258     plt.tight_layout()
259     plt.savefig(f"_to_trash/dump_dustydiffuse_tva_{t:.2f}.png")
260     plt.close()
Info: evolve_until (target_time = 0.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
Info: iteration since start : 1                                                       [SPH][rank=0]
Info: time since start : 9.805836632 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.004910706 s
/work/doc/sphinx/examples/sph/run_dustydiffuse_tva.py:221: RuntimeWarning: invalid value encountered in sqrt
  s = np.sqrt(rho * analytic_eps_curve(t))
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 3.217621890927013e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.80 us    (3.1%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 296.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0010939914429151853 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    | 7.3972e+04 | 30464 |      1 | 4.118e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2812679501204731 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 3.217621890927013e-05, dt = 0.0010939914429151853 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.3%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 681.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 219.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.001801868258919129 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    | 7.4521e+04 | 30464 |      1 | 4.088e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.634040144404949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0011261676618244554, dt = 0.001801868258919129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 243.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0022737861362550913 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    | 7.7553e+04 | 30464 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51344740897692 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0029280359207435845, dt = 0.0022737861362550913 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.2%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 239.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0025883980544790662 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    | 7.7398e+04 | 30464 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.79684016254242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.005201822056998676, dt = 0.0025883980544790662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 238.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0027981393332950494 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    | 7.7299e+04 | 30464 |      1 | 3.941e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.64405381625757 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0077902201114777424, dt = 0.0027981393332950494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.0%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 246.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0029379668525057047 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    | 7.0539e+04 | 30464 |      1 | 4.319e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.324501284421146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.010588359444772792, dt = 0.0029379668525057047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.3%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 220.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003031185198646142 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    | 7.7637e+04 | 30464 |      1 | 3.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.954566135015874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013526326297278497, dt = 0.003031185198646142 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 274.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003093330762739767 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    | 7.7616e+04 | 30464 |      1 | 3.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.802244399353132 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01655751149592464, dt = 0.003093330762739767 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 249.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003134761138802183 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    | 7.7694e+04 | 30464 |      1 | 3.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.400683753821568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.019650842258664404, dt = 0.003134761138802183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.3%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 661.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 227.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003162381389510461 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    | 7.8085e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.925992685292595 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02278560339746659, dt = 0.003162381389510461 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 252.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003180794889982646 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    | 7.7857e+04 | 30464 |      1 | 3.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.09553060716632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02594798478697705, dt = 0.003180794889982646 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.2%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 244.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0031930705569641026 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    | 7.8195e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.391992210710992 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.029128779676959697, dt = 0.0031930705569641026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.9%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 255.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032012543349517406 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    | 7.7888e+04 | 30464 |      1 | 3.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.389677257812277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.032321850233923796, dt = 0.0032012543349517406 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 243.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003206710186943499 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    | 7.7807e+04 | 30464 |      1 | 3.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.434516330920967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03552310456887554, dt = 0.003206710186943499 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.0%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 247.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003210347421604671 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    | 7.7801e+04 | 30464 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.482089043967456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.038729814755819034, dt = 0.003210347421604671 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 220.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032127722447121195 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    | 7.8195e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.665244508110224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.041940162177423704, dt = 0.0032127722447121195 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (2.3%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 821.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.7%)
   LB compute        : 208.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032143887934504185 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    | 7.8087e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.64646418043007 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.045152934422135825, dt = 0.0032143887934504185 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 232.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032154664926092847 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    | 7.8149e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.68492832135849 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04836732321558625, dt = 0.0032154664926092847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.1%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 220.66 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032161849587151953 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    | 7.8365e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.776912460622825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.051582789708195534, dt = 0.0032161849587151953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (2.2%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 216.55 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032166639361191356 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    | 7.7811e+04 | 30464 |      1 | 3.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.573152283493645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05479897466691073, dt = 0.0032166639361191356 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (2.0%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 247.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003216983254388429 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    | 7.7918e+04 | 30464 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.618169397634006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.058015638603029863, dt = 0.003216983254388429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.3%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 252.03 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032171961332346246 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    | 7.8020e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.659970419775956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06123262185741829, dt = 0.0032171961332346246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.0%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 244.09 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032173380524654215 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    | 7.8318e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.775357374142867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06444981799065291, dt = 0.0032173380524654215 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.8%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 286.26 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.0%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217432665285953 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    | 7.8207e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.734427719261188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06766715604311833, dt = 0.003217432665285953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.2%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 247.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032174957404996407 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    | 7.8269e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.758748449125633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07088458870840429, dt = 0.0032174957404996407 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.5%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.6%)
   LB compute        : 221.60 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217537790642099 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    | 7.2814e+04 | 30464 |      1 | 4.184e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.685247838195185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07410208444890393, dt = 0.003217537790642099 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.1%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 236.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217565824070405 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    | 7.7758e+04 | 30464 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.56542965178815 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07731962223954603, dt = 0.003217565824070405 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.77 us    (2.7%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 265.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.0%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032175845130226087 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    | 7.5533e+04 | 30464 |      1 | 4.033e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.719694041752515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08053718806361643, dt = 0.0032175845130226087 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.1%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 257.95 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217596972324078 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    | 7.7118e+04 | 30464 |      1 | 3.950e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.322434848558196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08375477257663903, dt = 0.003217596972324078 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.8%)
   patch tree reduce : 1.78 us    (0.8%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 211.78 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176052785250573 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    | 7.7764e+04 | 30464 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.568414152799505 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0869723695489631, dt = 0.0032176052785250573 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.7%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 216.05 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217610815992377 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    | 7.7574e+04 | 30464 |      1 | 3.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.49608834185941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09018997482748817, dt = 0.003217610815992377 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 245.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176145076372566 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    | 7.7672e+04 | 30464 |      1 | 3.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.533538296898023 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09340758564348055, dt = 0.0032176145076372566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.5%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 231.78 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217616968733843 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    | 7.7574e+04 | 30464 |      1 | 3.927e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.496142902227035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09662520015111781, dt = 0.003217616968733843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.2%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 218.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176186094649006 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    | 7.7827e+04 | 30464 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.592440777465676 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09984281711985166, dt = 0.0001571828801483488 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.3%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 213.52 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176197032856057 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    | 7.7683e+04 | 30464 |      1 | 3.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4429330730798156 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 36                                                      [SPH][rank=0]
Info: time since start : 24.0334769 (s)                                               [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002548603 s
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.0032176197032856057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.12 us   (3.7%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 252.77 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217620432499409 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    | 7.8269e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.760303615197643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1032176197032856, dt = 0.003217620432499409 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 231.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217620918641945 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    | 7.8431e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82193725151359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10643524013578502, dt = 0.003217620918641945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 244.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176212427369685 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    | 7.8341e+04 | 30464 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.787925366250555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10965286105442697, dt = 0.0032176212427369685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.8%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 290.36 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176214588003176 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    | 7.8129e+04 | 30464 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.707173638057775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11287048229716394, dt = 0.0032176214588003176 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.4%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 221.95 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.00321762160284255 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    | 7.8445e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.827476466927394 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11608810375596426, dt = 0.00321762160284255 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.8%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 263.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621698870706 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    | 7.8507e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.85091653006799 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1193057253588068, dt = 0.003217621698870706 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.1%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 222.87 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621762889476 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    | 7.8183e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.72776020958918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1225233470576775, dt = 0.003217621762889476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.0%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 236.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 us    (63.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621805568656 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    | 7.8002e+04 | 30464 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.658856975960475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12574096882056698, dt = 0.003217621805568656 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.3%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 212.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218340214426 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    | 7.5978e+04 | 30464 |      1 | 4.010e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.889252006287737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12895859062613563, dt = 0.0032176218340214426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.9%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 14.83 us   (4.9%)
   LB compute        : 267.74 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621852989967 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    | 7.8050e+04 | 30464 |      1 | 3.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.677280372773094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13217621246015707, dt = 0.003217621852989967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (2.0%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.92 us    (0.8%)
   LB compute        : 236.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.00321762186563565 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    | 7.8440e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82551793151606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13539383431314703, dt = 0.00321762186563565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.5%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 215.61 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218740661055 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    | 7.3064e+04 | 30464 |      1 | 4.169e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.781374386166735 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13861145617878268, dt = 0.0032176218740661055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (2.0%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 243.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621879686409 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    | 7.8348e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.790674843322314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14182907805284878, dt = 0.003217621879686409 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.0%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 255.70 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218834332783 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    | 7.6736e+04 | 30464 |      1 | 3.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.17770264441906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1450466999325352, dt = 0.0032176218834332783 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.2%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 239.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621885931191 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    | 7.3960e+04 | 30464 |      1 | 4.119e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.122237597335875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14826432181596846, dt = 0.003217621885931191 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (2.2%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 209.20 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (61.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218875964663 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    | 7.5515e+04 | 30464 |      1 | 4.034e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71317420354217 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15148194370189966, dt = 0.0032176218875964663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.0%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 250.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218887066494 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    | 7.7398e+04 | 30464 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.429413827352057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15469956558949613, dt = 0.0032176218887066494 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (2.0%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 244.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621889446772 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    | 7.7251e+04 | 30464 |      1 | 3.943e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.37353139483621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15791718747820277, dt = 0.003217621889446772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.5%)
   LB compute        : 232.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218899401857 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    | 7.6122e+04 | 30464 |      1 | 4.002e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.944020940795266 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16113480936764954, dt = 0.0032176218899401857 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 241.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890269129 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    | 7.8535e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.861573285375144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16435243125758972, dt = 0.003217621890269129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.1%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 234.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 2.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890488425 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    | 7.3948e+04 | 30464 |      1 | 4.120e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.117633051939148 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16757005314785886, dt = 0.003217621890488425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.5%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1.24 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 222.25 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890634622 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    | 7.7632e+04 | 30464 |      1 | 3.924e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.51835889360394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1707876750383473, dt = 0.003217621890634622 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 1.34 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 242.16 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218907320865 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    | 7.8641e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.902005591131864 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17400529692898192, dt = 0.0032176218907320865 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.1%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 236.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218907970632 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    | 7.8576e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87728090395325 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.177222918819714, dt = 0.0032176218907970632 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.9%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 277.70 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890840381 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    | 7.8539e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.86323557611682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18044054071051105, dt = 0.003217621890840381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.1%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 239.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218908692594 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    | 7.5827e+04 | 30464 |      1 | 4.018e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.83207631651188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18365816260135143, dt = 0.0032176218908692594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.9%)
   patch tree reduce : 1.87 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 239.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.86 us   (95.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218908885113 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    | 7.7829e+04 | 30464 |      1 | 3.914e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.59313615044037 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1868757844922207, dt = 0.0032176218908885113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.4%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 210.95 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890901346 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    | 7.8716e+04 | 30464 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.930452813332188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1900934063831092, dt = 0.003217621890901346 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.1%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 256.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890909902 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    | 7.6997e+04 | 30464 |      1 | 3.957e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.276768225346633 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19331102827401056, dt = 0.003217621890909902 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.9%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 245.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890915607 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    | 7.7794e+04 | 30464 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.58006093531293 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19652865016492047, dt = 0.003217621890915607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.8%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 298.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.00321762189091941 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    | 7.7776e+04 | 30464 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.573205563788534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19974627205583606, dt = 0.0002537279441639506 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 261.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890921945 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    | 7.8436e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.351803122992346 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 68                                                      [SPH][rank=0]
Info: time since start : 36.985385672 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0022471690000000002 s
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.2, dt = 0.003217621890921945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.80 us   (8.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 253.32 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.73 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890923635 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    | 7.8436e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82388162020742 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20321762189092196, dt = 0.003217621890923635 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.2%)
   patch tree reduce : 1.44 us    (0.6%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 233.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909247623 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    | 7.8667e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.911821254815123 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2064352437818456, dt = 0.0032176218909247623 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.5%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 217.43 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890925514 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    | 7.8585e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.880620023520425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20965286567277036, dt = 0.003217621890925514 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 261.83 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909260148 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    | 7.1321e+04 | 30464 |      1 | 4.271e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.118762413087282 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21287048756369586, dt = 0.0032176218909260148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 244.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909263487 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    | 7.7923e+04 | 30464 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.62894478310514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21608810945462187, dt = 0.0032176218909263487 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.0%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 238.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 us    (62.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890926571 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    | 7.8008e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.661156510451875 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2193057313455482, dt = 0.003217621890926571 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.4%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 237.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.00321762189092672 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    | 7.7974e+04 | 30464 |      1 | 3.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.648456564469807 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.22252335323647476, dt = 0.00321762189092672 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 251.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890926819 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    | 7.3777e+04 | 30464 |      1 | 4.129e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.052403875427295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2257409751274015, dt = 0.003217621890926819 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.3%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 231.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909268847 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    | 7.8760e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.947384331288937 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2289585970183283, dt = 0.0032176218909268847 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (2.3%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 215.78 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909269285 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    | 7.6940e+04 | 30464 |      1 | 3.959e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.25532736766011 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2321762189092552, dt = 0.0032176218909269285 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (2.1%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 242.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890926958 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    | 7.8464e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.834756397912805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2353938408001821, dt = 0.003217621890926958 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.9%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 252.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890926977 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    | 7.3293e+04 | 30464 |      1 | 4.156e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.868300884566096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23861146269110906, dt = 0.003217621890926977 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.3%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 217.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.00321762189092699 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    | 7.8658e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.908557790098108 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24182908458203603, dt = 0.00321762189092699 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.9%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 308.06 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890926999 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    | 7.8379e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.802404722229326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24504670647296303, dt = 0.003217621890926999 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.8%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 271.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270044 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    | 7.8169e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.72236291849152 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24826432836389004, dt = 0.0032176218909270044 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.1%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 243.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270083 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    | 7.8188e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.729705685233977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25148195025481707, dt = 0.0032176218909270083 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.2%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 255.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.003217621890927012 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    | 7.8441e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.826025606047274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25469957214574407, dt = 0.003217621890927012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.6%)
   patch tree reduce : 1.98 us    (0.6%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 338.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.65 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270135 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    | 7.8227e+04 | 30464 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.744582515951496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25791719403667107, dt = 0.0032176218909270135 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.9%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 249.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270144 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    | 7.7167e+04 | 30464 |      1 | 3.948e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.341494053104295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2611348159275981, dt = 0.0032176218909270144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.6%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 225.90 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7800e+04 | 30464 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.582188290258777 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2643524378185251, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.8%)
   patch tree reduce : 1.87 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 284.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8016e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.664432905706935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2675700597094521, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.0%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 270.56 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.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8035e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.67153471449899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2707876816003791, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.2%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 254.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7906e+04 | 30464 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.622669658339614 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2740053034913061, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.9%)
   patch tree reduce : 1.77 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 268.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8438e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.824847331783136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2772229253822331, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.3%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 212.48 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8264e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.75877070915022 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2804405472731601, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.4%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 221.45 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8528e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.85909222445528 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2836581691640871, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.2%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 238.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8466e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.83555989582881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2868757910550141, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 264.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0375e+04 | 30464 |      1 | 4.329e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.759123503235713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2900934129459411, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 256.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.4584e+04 | 30464 |      1 | 4.717e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.55702470358417 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2933110348368681, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.2%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 251.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8563e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87230032146838 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2965286567277951, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 266.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8642e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.90251081336303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2997462786187221, dt = 0.0002537213812779382 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.4%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 224.96 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5061e+04 | 30464 |      1 | 4.059e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2505399745568333 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 100                                                     [SPH][rank=0]
Info: time since start : 50.027470688 (s)                                             [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002274191 s
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.30000000000000004, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.26 us   (3.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 294.71 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.4058e+04 | 30464 |      1 | 4.756e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.356983862166032 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.30321762189092705, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.0%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 254.40 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6715e+04 | 30464 |      1 | 3.971e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.169462185397506 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.30643524378185405, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 244.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7719e+04 | 30464 |      1 | 3.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.551258214159198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.30965286567278105, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.3%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 220.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.3%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7691e+04 | 30464 |      1 | 3.921e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.54071557714517 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.31287048756370806, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.3%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 841.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 220.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8201e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.734706380762482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.31608810945463506, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (2.1%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 235.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8630e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89788766878062 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.31930573134556206, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.0%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 252.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8449e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.829111539171496 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32252335323648906, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.0%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 255.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8007e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.660932605942044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32574097512741607, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.7%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 275.69 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8405e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.812033632684486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32895859701834307, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.0%)
   patch tree reduce : 1.89 us    (0.3%)
   gen split merge   : 841.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.2%)
   LB compute        : 555.81 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8103e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.69720831368209 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33217621890927007, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (2.0%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 239.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8437e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.824400329192603 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.1%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 256.48 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7997e+04 | 30464 |      1 | 3.906e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.657189161936312 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1.81 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 270.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7819e+04 | 30464 |      1 | 3.915e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.58939815915818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 273.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.57 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0341e+04 | 30464 |      1 | 4.331e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.746163408058674 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 269.98 us  (81.0%)
   LB move op cnt    : 0
   LB apply          : 20.35 us   (6.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6740e+04 | 30464 |      1 | 3.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.17931923707259 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 269.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8779e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.954271847440154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.2%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 1.16 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 236.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8976e+04 | 30464 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.02948431422205 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 256.74 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1070e+04 | 30464 |      1 | 4.287e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.023033342050738 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 231.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3704e+04 | 30464 |      1 | 4.133e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.024706396523698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 244.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8756e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94557177078573 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 260.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5558e+04 | 30464 |      1 | 4.032e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.729798932899303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 212.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4917e+04 | 30464 |      1 | 4.066e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.485801786752376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 235.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8367e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.79761003753251 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.8%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 256.63 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8679e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.916366113888074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.4%)
   patch tree reduce : 1.41 us    (0.6%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 215.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8330e+04 | 30464 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.783559701720513 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.2%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 235.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8684e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.918492662183922 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.2%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 232.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2478e+04 | 30464 |      1 | 4.203e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.558494590306275 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (2.0%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 243.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4944e+04 | 30464 |      1 | 4.065e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.496101024303535 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.1%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 245.45 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8627e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.896738124719185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.4%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 215.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8983e+04 | 30464 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.03212062220612 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (2.0%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 235.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8933e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.012913762951698 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.3%)
   patch tree reduce : 1.65 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 226.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8959e+04 | 30464 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.36742457502319 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 132                                                     [SPH][rank=0]
Info: time since start : 63.121767334000005 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002296835 s
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.18 us   (3.8%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 242.61 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8782e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.95541458761648 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.403217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.9%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 247.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 2.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.6341e+04 | 30464 |      1 | 4.592e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.225262352361867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.406435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.65 us    (1.9%)
   patch tree reduce : 1.38 us    (0.6%)
   gen split merge   : 420.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.4%)
   LB compute        : 223.77 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.8335e+04 | 30464 |      1 | 4.458e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.983207272604457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.40965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.2%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 5.70 us    (2.2%)
   LB compute        : 237.85 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8452e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.83011561511175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41287048756370803, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.2%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.6%)
   LB compute        : 220.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9022e+04 | 30464 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.046972035674173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41608810945463504, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.9%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 255.23 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 15.93 us   (5.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8736e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.938244100591778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.41930573134556204, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.4%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 215.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6268e+04 | 30464 |      1 | 3.994e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.99955156253845 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.42252335323648904, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.0%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.6%)
   LB compute        : 245.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8601e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.886933438335337 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42574097512741604, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.7%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 270.19 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8795e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.96046570373155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.42895859701834305, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.1%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 238.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8834e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.97547204245852 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.43217621890927005, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.33 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 259.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4174e+04 | 30464 |      1 | 4.107e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.20355362060197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.43539384080019705, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (2.0%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 252.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.94 us   (95.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8845e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.979569779570756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.43861146269112405, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.2%)
   patch tree reduce : 1.34 us    (0.6%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 219.03 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2085e+04 | 30464 |      1 | 4.226e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.409187316928517 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44182908458205106, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.2%)
   patch tree reduce : 1.60 us    (0.6%)
   gen split merge   : 641.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 236.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0241e+04 | 30464 |      1 | 4.337e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.707810324819402 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44504670647297806, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.6%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 203.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8457e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.832154471336533 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44826432836390506, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.4%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.6%)
   LB compute        : 214.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8620e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.893880273816368 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.45148195025483207, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.40 us   (6.7%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 245.44 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7395e+04 | 30464 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.428329961200724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.45469957214575907, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.2%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 250.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8353e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.792546938509844 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.45791719403668607, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.2%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 218.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.48 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8022e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.66640275249239 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.0%)
   patch tree reduce : 1.45 us    (0.5%)
   gen split merge   : 15.14 us   (5.7%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.6%)
   LB compute        : 232.58 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (65.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9003e+04 | 30464 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.03965277763487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (2.1%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 232.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9034e+04 | 30464 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.05153521722242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.1%)
   patch tree reduce : 1.30 us    (0.5%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 224.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8661e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9095337814231 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.4707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (2.1%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.6%)
   LB compute        : 210.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8831e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.97415844977169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (2.3%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 214.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8970e+04 | 30464 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.027212124483967 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.1%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 241.76 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3651e+04 | 30464 |      1 | 4.136e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.004714302117975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.9%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.5%)
   LB compute        : 244.37 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8474e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.838593997861643 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 268.43 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7755e+04 | 30464 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.56497676126505 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 270.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7529e+04 | 30464 |      1 | 4.511e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.676941514189078 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.5%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 217.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8750e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94333710799633 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.8%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.5%)
   LB compute        : 274.43 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8562e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.871845963668996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.9%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 259.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8531e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.860058909082113 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (2.1%)
   patch tree reduce : 1.42 us    (0.6%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 215.34 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4704e+04 | 30464 |      1 | 4.078e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2398463706166374 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 164                                                     [SPH][rank=0]
Info: time since start : 76.22028227 (s)                                              [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0022746710000000002 s
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.70 us   (3.4%)
   patch tree reduce : 1.85 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 287.37 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (76.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7024e+04 | 30464 |      1 | 3.955e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.287291216393847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.503217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.3%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 241.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8940e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.015756230009327 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.506435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.3%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 221.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8886e+04 | 30464 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.995053366157798 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.509652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.5%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 223.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8391e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.806886936810695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.512870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.6%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 217.78 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8037e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.672157209007352 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.516088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.4%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 232.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8371e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.799329371823205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.519305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.5%)
   patch tree reduce : 1.97 us    (0.9%)
   gen split merge   : 1.07 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 212.40 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8547e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.866038365551304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.522523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.3%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 244.70 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8601e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.886846995389114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.525740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.2%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 245.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6743e+04 | 30464 |      1 | 3.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.180364358777027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.528958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (2.3%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 215.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8584e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.880149997100457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.53217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (2.2%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 221.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7114e+04 | 30464 |      1 | 3.951e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.321180018239534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.535393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (2.1%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 243.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8207e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.736895506126025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.538611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.1%)
   patch tree reduce : 1.98 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        : 258.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0550e+04 | 30464 |      1 | 4.318e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.82557782911899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.541829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.2%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 224.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8391e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80679044844133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.545046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.6%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 217.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8433e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82294031135977 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.548264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.3%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 219.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8793e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.95975441706131 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.551481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.3%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 239.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (60.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7633e+04 | 30464 |      1 | 4.504e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.71638923065604 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.554699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.4%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 852.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.4%)
   LB compute        : 215.27 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8934e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.01340982795846 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.557917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.3%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 221.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8542e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.864245724691568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.561134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.3%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 222.16 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8516e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.85433245234281 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.56435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.1%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 253.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8812e+04 | 30464 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.967147356040133 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.5%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 219.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.39 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8770e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.950821536712194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.4%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 235.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8870e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9888412425729 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.1%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 268.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7556e+04 | 30464 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.489526827973044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.3%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 1.18 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.51 us    (0.6%)
   LB compute        : 219.32 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8222e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.74250383350574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.5%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 14.91 us   (5.9%)
   LB compute        : 218.32 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8153e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.716286777510522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.4%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 234.02 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.04 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7979e+04 | 30464 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.650141728316765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.4%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.28 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 245.46 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8017e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.66471080174912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.2%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 252.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0587e+04 | 30464 |      1 | 4.316e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.839733517695958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 243.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7402e+04 | 30464 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.43095195120176 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (2.1%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 701.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 227.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8366e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.797343749720824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.5%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 217.51 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.9715e+04 | 30464 |      1 | 4.370e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090251846265162 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 196                                                     [SPH][rank=0]
Info: time since start : 89.41842319700001 (s)                                        [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002313009 s
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.22 us   (3.7%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 254.08 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (75.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8446e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82798770877308 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.9%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 267.42 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7730e+04 | 30464 |      1 | 3.919e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.555468070475648 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 250.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1431e+04 | 30464 |      1 | 4.265e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.160376334289708 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 256.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6775e+04 | 30464 |      1 | 3.968e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.19259324171289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.4%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 229.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5619e+04 | 30464 |      1 | 4.029e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.75271542785741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (2.2%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 221.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8618e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.893104489372277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.6%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 214.24 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8344e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.789030283922585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 218.89 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 15.47 us   (6.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8091e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.69281534616999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 259.61 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8119e+04 | 30464 |      1 | 3.900e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.70356289557655 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.5%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 216.56 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8175e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.724854574643114 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.5%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 218.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8797e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.961418814174277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.3%)
   patch tree reduce : 1.75 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 211.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0091e+04 | 30464 |      1 | 4.346e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.65110448224169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (2.3%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 214.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3518e+04 | 30464 |      1 | 4.144e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.953922019174794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (2.0%)
   patch tree reduce : 1.59 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 231.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.55 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8954e+04 | 30464 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.021032346786196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (2.2%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 212.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8989e+04 | 30464 |      1 | 3.857e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.034387324865303 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (2.2%)
   patch tree reduce : 2.24 us    (1.0%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 214.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8915e+04 | 30464 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.006032601375654 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (2.2%)
   patch tree reduce : 1.77 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 211.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 us    (64.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8706e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.926757629223026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (2.3%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 214.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4186e+04 | 30464 |      1 | 4.106e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.208146364145552 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.2%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 238.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8585e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.880805710413117 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.2%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 250.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8366e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.797208154791168 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 261.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8371e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.799451416913854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.1%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 1.17 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 234.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8567e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.873934521450035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.2%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 215.98 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8939e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.015402496332438 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.3%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 221.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2251e+04 | 30464 |      1 | 4.216e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.472262520643184 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.4%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 223.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8316e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.778199985687195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.2%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 239.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8676e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.915289239626176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.4%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 216.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8536e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.86219585904311 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 260.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8375e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.800967787874747 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.8%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.4%)
   LB compute        : 267.42 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8006e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.66053174327476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.6%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.6%)
   LB compute        : 220.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8939e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.015233488000607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 252.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8898e+04 | 30464 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.99962246747955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6997462786187372, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (2.0%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 242.58 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1930e+04 | 30464 |      1 | 4.235e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.156665821146706 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 228                                                     [SPH][rank=0]
Info: time since start : 102.413137152 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002263985 s
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.13 us   (2.8%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 651.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 343.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.4662e+04 | 30464 |      1 | 4.711e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.58671199314999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 257.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.9549e+04 | 30464 |      1 | 4.380e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.444912005011638 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 298.27 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8656e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.907805876938408 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.5%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 1.14 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 227.73 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8316e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.77824737175984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 262.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6565e+04 | 30464 |      1 | 3.979e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.112614174024788 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.6%)
   LB compute        : 226.67 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.56 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8610e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89001239793031 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (2.3%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 226.04 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8679e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.916423289749943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 263.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8787e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.95765608958081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.0%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 254.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (64.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8605e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.888172534555796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.3%)
   patch tree reduce : 1.49 us    (0.6%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 225.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4060e+04 | 30464 |      1 | 4.113e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.1602084337022 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 256.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7683e+04 | 30464 |      1 | 3.922e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.537659799334445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.0%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 262.07 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5650e+04 | 30464 |      1 | 4.027e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.764585783970336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.2%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 651.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 232.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7775e+04 | 30464 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.572850179563194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.3%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 220.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3148e+04 | 30464 |      1 | 4.165e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.813311398308322 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.4%)
   patch tree reduce : 2.01 us    (0.9%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 215.60 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8792e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.959286469448973 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (2.3%)
   patch tree reduce : 2.08 us    (0.9%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.5%)
   LB compute        : 209.19 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8876e+04 | 30464 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.99140355986171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.9%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 255.05 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8697e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.923077966593144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (2.2%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 213.02 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8714e+04 | 30464 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.929703897913594 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.5%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 211.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8208e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.737352409718063 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 234.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8606e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88865229936255 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.4%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 216.81 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7890e+04 | 30464 |      1 | 3.911e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.61653038811353 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.4%)
   patch tree reduce : 1.76 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 215.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5371e+04 | 30464 |      1 | 4.042e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.65841424341241 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.5%)
   patch tree reduce : 1.84 us    (0.8%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 215.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7189e+04 | 30464 |      1 | 3.947e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.34990648086847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.6%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 215.67 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8613e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89120330885964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.3%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.5%)
   LB compute        : 218.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2819e+04 | 30464 |      1 | 4.184e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.688171574131086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.3%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 235.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8596e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88479171294941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.1%)
   patch tree reduce : 1.96 us    (0.7%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 245.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8560e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.871190951649222 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.2%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 237.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8688e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.919931833331198 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.2%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 236.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8447e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.828164677062738 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (2.0%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 225.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8279e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.764433868900568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.7%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 212.52 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8264e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.758756794776914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 250.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8352e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3492297770959367 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 115.43890558800001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002234881 s
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.79 us   (3.9%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 540.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 249.74 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.79 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8069e+04 | 30464 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.68429772754553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.803217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 252.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8023e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.667067049767855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.806435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.3%)
   patch tree reduce : 3.29 us    (1.2%)
   gen split merge   : 1.20 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.54 us    (0.6%)
   LB compute        : 242.10 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8247e+04 | 30464 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.752165062470873 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.809652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.4%)
   patch tree reduce : 2.17 us    (0.9%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.60 us    (0.7%)
   LB compute        : 222.81 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.99 us   (94.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8342e+04 | 30464 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.788136446338033 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.812870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.9%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 281.22 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (63.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8040e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.67352982948082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 256.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7853e+04 | 30464 |      1 | 3.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.602319587347324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.4%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 216.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8503e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.849426511980017 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8225233532364891, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (2.0%)
   patch tree reduce : 1.50 us    (0.5%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 266.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1265e+04 | 30464 |      1 | 4.275e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.097532079461825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8257409751274161, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.4%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 231.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8360e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.795045854536806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.4%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 231.74 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8457e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.8320067276733 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.0%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 255.61 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8407e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.813060346069015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 241.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7937e+04 | 30464 |      1 | 3.909e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.634177057925655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.1%)
   patch tree reduce : 1.57 us    (0.6%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 257.36 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7973e+04 | 30464 |      1 | 3.907e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.647815410129645 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.5%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 229.59 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7388e+04 | 30464 |      1 | 3.937e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.425433731399316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.0%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 262.45 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8218e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.741123450131646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 242.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8283e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.765895047737207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.6%)
   patch tree reduce : 2.05 us    (0.9%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 221.62 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8637e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.900593385520793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.1%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 239.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (63.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8283e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.76584150536086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.4%)
   patch tree reduce : 1.95 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 218.47 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8405e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.812373765381338 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 259.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (7.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8578e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87787769179699 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (2.0%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 1.18 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 246.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8763e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94846103974401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.0%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 251.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.42 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8766e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9496156489743 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.4%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 219.52 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8592e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.883442805588096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.4%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 217.27 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8448e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82854127933147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 237.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8274e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.762266840177446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 258.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5025e+04 | 30464 |      1 | 4.060e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.527165644225636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.0%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 249.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7084e+04 | 30464 |      1 | 3.952e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.31002932594123 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.3%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.6%)
   LB compute        : 214.59 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1374e+04 | 30464 |      1 | 4.268e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.138675791448083 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 236.99 us  (85.7%)
   LB move op cnt    : 0
   LB apply          : 22.65 us   (8.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8569e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.874621783219865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.9%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 264.05 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8541e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.864029214791422 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.3%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 701.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.7%)
   LB compute        : 215.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8711e+04 | 30464 |      1 | 3.870e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.928609669737355 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (2.2%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 217.15 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8796e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3625245230972656 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 292                                                     [SPH][rank=0]
Info: time since start : 128.33121644800002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0022465890000000002 s
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.11 us   (3.7%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 239.54 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8652e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.906204258833426 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.903217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.9%)
   patch tree reduce : 1.40 us    (0.5%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 243.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8626e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89625231324492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.906435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.0%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 241.48 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8540e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.86343105706414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.909652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (2.2%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.4%)
   LB compute        : 218.93 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8732e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.936711251846226 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.912870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.2%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 244.27 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8480e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.840707043595486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.916088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (2.0%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 249.59 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8509e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.85187097196632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.919305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.5%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 215.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7619e+04 | 30464 |      1 | 3.925e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.51317864171905 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.922523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.2%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 1.12 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 246.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8092e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.693378601362717 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.925740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.2%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 248.00 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0665e+04 | 30464 |      1 | 4.311e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.86932365394191 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.928958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.1%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 235.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (58.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7762e+04 | 30464 |      1 | 3.918e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.567699840085602 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.93217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.2%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 253.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6934e+04 | 30464 |      1 | 3.960e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.252945346820646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.935393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 242.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8628e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.897032042153672 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.938611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (2.5%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 217.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8676e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.915409918621297 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (2.1%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.64 us    (0.7%)
   LB compute        : 232.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8609e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.889856753500773 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (2.3%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 238.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8468e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.83618844641133 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.2%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 248.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8504e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.849882495664705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.8%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 266.68 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8477e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.839529146454076 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.3%)
   patch tree reduce : 1.89 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 220.53 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7515e+04 | 30464 |      1 | 3.930e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.47369568198257 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.9%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 253.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8140e+04 | 30464 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.71157859457059 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.1%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 258.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8379e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.802258729938405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 279.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8071e+04 | 30464 |      1 | 3.902e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.68534822171781 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.2%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 691.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 234.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8586e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88099402037807 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (2.1%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 239.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8574e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.876403803031742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9740053034913211, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.2%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 220.38 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8763e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.948304476290478 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9772229253822481, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 255.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8146e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.713754025803357 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.3%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 220.26 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8923e+04 | 30464 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.009212728885522 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 238.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4649e+04 | 30464 |      1 | 4.081e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38417838189827 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.1%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 254.50 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4625e+04 | 30464 |      1 | 4.082e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.37491341566834 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.0%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.4%)
   LB compute        : 263.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.40 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6751e+04 | 30464 |      1 | 3.969e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.18323496952102 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.1%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 841.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 221.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8754e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.94501531878397 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.2%)
   patch tree reduce : 1.46 us    (0.6%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 230.54 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9011e+04 | 30464 |      1 | 3.856e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.04279008972418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9997462786187371, dt = 0.0002537213812628947 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 269.16 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7800e+04 | 30464 |      1 | 3.916e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3326542093438154 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 141.205996929 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002296734 s
Info: evolve_until (target_time = 1.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.17 us   (3.8%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 551.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 246.52 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.4408e+04 | 30464 |      1 | 4.730e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.4901949129533 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.003217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (2.0%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 241.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8180e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.72674678251531 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.006435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.5%)
   LB compute        : 264.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8511e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.852507364956075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.009652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.3%)
   patch tree reduce : 1.61 us    (0.7%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 217.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8785e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.956676335397 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.012870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.3%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 219.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8172e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.723683364899095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.016088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.3%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.7%)
   LB compute        : 214.35 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8748e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.942465642754613 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.019305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 254.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8143e+04 | 30464 |      1 | 3.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.712531330680584 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.022523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (2.1%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 229.47 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6633e+04 | 30464 |      1 | 3.975e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.138349309859457 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.025740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (2.0%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 239.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8721e+04 | 30464 |      1 | 3.870e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.93226106925334 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.028958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.1%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 782.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 257.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8614e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.891702146707416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.03217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.5%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.21 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 218.73 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8784e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.95629695546923 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.035393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (2.2%)
   patch tree reduce : 1.59 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 216.48 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8733e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.937014930828134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.038611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (2.3%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 221.46 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8589e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88206488090645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.041829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.1%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.6%)
   LB compute        : 243.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6237e+04 | 30464 |      1 | 3.996e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.987716193829904 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.045046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.2%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 242.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6358e+04 | 30464 |      1 | 3.990e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.034051582617593 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.048264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.9%)
   patch tree reduce : 1.73 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 259.15 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8267e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.759894528889724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.051481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.1%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 812.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 253.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8129e+04 | 30464 |      1 | 3.899e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.707327960924207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.054699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.3%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 239.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8231e+04 | 30464 |      1 | 3.894e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.746207889517326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.057917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.5%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 1.22 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 214.40 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.52 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5054e+04 | 30464 |      1 | 4.059e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.537878134733475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.061134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (2.3%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 239.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5416e+04 | 30464 |      1 | 4.039e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.675860063700764 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.06435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.3%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 220.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8271e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.761367878945563 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.067570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.2%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 252.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7898e+04 | 30464 |      1 | 3.911e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.61928380016284 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.070787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.2%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 237.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (63.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8382e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80346888362023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.074005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.2%)
   patch tree reduce : 1.38 us    (0.6%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.48 us    (0.6%)
   LB compute        : 212.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.3743e+04 | 30464 |      1 | 4.779e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.237312257291215 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.077222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.4%)
   patch tree reduce : 1.78 us    (0.4%)
   gen split merge   : 1.01 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 397.07 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.4686e+04 | 30464 |      1 | 4.709e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.595918430507446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.080440547273175, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.2%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 240.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8444e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.827162191736775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.083658169164102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.2%)
   patch tree reduce : 1.43 us    (0.5%)
   gen split merge   : 772.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 242.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8459e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.832779344104704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.086875791055029, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (2.1%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 239.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7088e+04 | 30464 |      1 | 3.952e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.31131605915014 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.090093412945956, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.9%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.6%)
   LB compute        : 250.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8586e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.880879862477872 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.093311034836883, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.3%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 1.08 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 214.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8339e+04 | 30464 |      1 | 3.889e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.787010262840298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.09652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (2.4%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.6%)
   LB compute        : 214.72 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8639e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.901348872596525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.099746278618737, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (2.1%)
   patch tree reduce : 1.83 us    (0.7%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 243.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8502e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3537087109525716 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 356                                                     [SPH][rank=0]
Info: time since start : 154.487570978 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0022454470000000002 s
Info: evolve_until (target_time = 1.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.1, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.05 us   (4.1%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 246.55 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8633e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89896815256454 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.103217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.2%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 1.15 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 252.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8607e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.88908202623118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.106435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 249.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8576e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.877067597530772 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.109652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.2%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.45 us    (0.6%)
   LB compute        : 238.92 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8635e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.899758828170167 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.112870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 822.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 250.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5954e+04 | 30464 |      1 | 4.011e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.880251250356192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.116088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.0%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.5%)
   LB compute        : 260.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8493e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.845740770734686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.119305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.1%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 245.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8698e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.923463926495025 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.122523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.3%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 234.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8364e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.796534950754236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.125740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.3%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 226.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3229e+04 | 30464 |      1 | 4.160e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.844219427389763 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.3%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 234.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8264e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.758514059863636 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.2%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 245.41 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.07 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8449e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82905692417213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 261.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8376e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.801106790517462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.2%)
   patch tree reduce : 1.56 us    (0.6%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 243.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8266e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.75922148072175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (2.2%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 215.73 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6931e+04 | 30464 |      1 | 3.960e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.251677251289077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (2.0%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 235.29 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2119e+04 | 30464 |      1 | 4.224e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.421917461524753 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.4%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 218.15 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2162e+04 | 30464 |      1 | 4.222e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.438481478731152 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.9%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 265.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.60 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8029e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.669303145741793 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.8%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 211.44 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8526e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.858146151816392 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.60 us    (2.1%)
   patch tree reduce : 1.47 us    (0.7%)
   gen split merge   : 551.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 201.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 942.00 ns  (63.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8148e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.71466352867949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.64 us    (2.2%)
   patch tree reduce : 1.46 us    (0.7%)
   gen split merge   : 681.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.6%)
   LB compute        : 197.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.02 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.9648e+04 | 30464 |      1 | 4.374e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.482489239880994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.5%)
   patch tree reduce : 1.65 us    (0.8%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 202.12 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 881.00 ns  (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8551e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.867621128830255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.4%)
   LB compute        : 250.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8217e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.740876955674878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.9%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 270.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8431e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.82226732613437 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 211.16 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7531e+04 | 30464 |      1 | 3.929e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.47977039505326 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (2.4%)
   patch tree reduce : 1.47 us    (0.6%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 211.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8415e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.816101615811778 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.4%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 209.96 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4804e+04 | 30464 |      1 | 4.072e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.443081804334565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.2%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 231.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8485e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84279317132189 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.1%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 241.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8516e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.854491035667813 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.5%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.5%)
   LB compute        : 210.38 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8640e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.90139703734989 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.2%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.4%)
   LB compute        : 228.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2442e+04 | 30464 |      1 | 4.205e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.544755303302978 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.1965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.9%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 691.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 247.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.54 us    (54.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5525e+04 | 30464 |      1 | 4.034e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.71713786690203 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.1997462786187372, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (2.4%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 209.86 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8388e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3502847566919347 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 388                                                     [SPH][rank=0]
Info: time since start : 167.48925653100002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002278617 s
Info: evolve_until (target_time = 1.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.2000000000000002, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.47 us   (3.9%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.4%)
   LB compute        : 245.27 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8471e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.83740558437101 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2032176218909272, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.4%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 220.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (64.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8158e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.718246895864173 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2064352437818542, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.9%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 264.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8168e+04 | 30464 |      1 | 3.897e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.72217568742245 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2096528656727812, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 531.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 235.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8515e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.854170485183705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2128704875637082, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.2%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 233.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8453e+04 | 30464 |      1 | 3.883e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.830420745911027 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2160881094546352, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.4%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 223.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8642e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.902199806083857 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2193057313455622, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.2%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 225.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.4%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7877e+04 | 30464 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.611588208117965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 239.73 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7960e+04 | 30464 |      1 | 3.908e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.642896086088182 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 249.67 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7408e+04 | 30464 |      1 | 3.935e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.43321092939895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.9%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 248.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8224e+04 | 30464 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.743237452957576 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 242.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5821e+04 | 30464 |      1 | 4.018e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.829781087826653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.4%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 222.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8470e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.836780133518882 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.3%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 221.38 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8126e+04 | 30464 |      1 | 3.899e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.705974914015396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.0%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 249.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7864e+04 | 30464 |      1 | 3.912e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.606347409847416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (2.0%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 243.97 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5174e+04 | 30464 |      1 | 4.052e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.583644205404138 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 272.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8343e+04 | 30464 |      1 | 3.889e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.7887223221672 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.2514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.4%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 1.05 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 209.96 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8321e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.780207097842965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.3%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 235.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8154e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.716950337440995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.8%)
   patch tree reduce : 1.84 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 274.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4322e+04 | 30464 |      1 | 4.099e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.25971849579828 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 771.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.5%)
   LB compute        : 260.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8097e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.695243128488038 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.4%)
   patch tree reduce : 1.62 us    (0.7%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 212.60 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8649e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.904813734474974 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.3%)
   patch tree reduce : 1.79 us    (0.8%)
   gen split merge   : 892.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 211.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6678e+04 | 30464 |      1 | 3.973e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.15572294296171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.1%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 244.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8413e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.815219966656382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.0%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 261.81 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8367e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.797779133530163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.3%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 247.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8382e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80361504113447 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.1%)
   patch tree reduce : 1.97 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 258.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.47 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8258e+04 | 30464 |      1 | 3.893e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.75636211090016 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.4%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 253.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3446e+04 | 30464 |      1 | 4.148e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.92661577912359 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2868757910550293, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 1.91 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 236.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8732e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.93642784947771 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2900934129459563, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.3%)
   patch tree reduce : 1.53 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.53 us    (0.6%)
   LB compute        : 221.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8871e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.989309958622982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2933110348368833, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.9%)
   patch tree reduce : 1.51 us    (0.5%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 274.47 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8690e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.920641694067236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.2965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.5%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 215.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8871e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.98930677531068 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.2997462786187373, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.5%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 222.16 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8798e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.362595391355772 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 420                                                     [SPH][rank=0]
Info: time since start : 180.358699175 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002318647 s
Info: evolve_until (target_time = 1.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.3, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.42 us   (3.6%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.4%)
   LB compute        : 262.87 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7856e+04 | 30464 |      1 | 3.913e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.603328880131713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.303217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.3%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 922.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 220.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8622e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.894693980419373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.306435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.5%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 752.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 221.64 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8781e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.955099380306585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.309652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.6%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 842.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 220.77 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (1.2%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8705e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.92647286894357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.312870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.5%)
   patch tree reduce : 1.94 us    (0.8%)
   gen split merge   : 1.08 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.46 us    (0.6%)
   LB compute        : 226.72 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8629e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89754704820077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.316088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.4%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.5%)
   LB compute        : 218.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8735e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.93783586204796 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.319305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.5%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.6%)
   LB compute        : 213.27 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6745e+04 | 30464 |      1 | 3.970e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.18085688124266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.322523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.0%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 1.13 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 246.63 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 15.90 us   (5.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4575e+04 | 30464 |      1 | 4.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.355844904621396 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.325740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.5%)
   patch tree reduce : 2.00 us    (0.9%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.6%)
   LB compute        : 214.34 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8627e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.896470448051346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.328958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.1%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 228.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.38 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8561e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87151263807429 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.33217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (2.2%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 242.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8538e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.862909141869032 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.335393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.3%)
   patch tree reduce : 1.98 us    (0.7%)
   gen split merge   : 741.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 260.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8465e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.835107192895233 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.338611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.1%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 711.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 246.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8360e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.795186334737874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.341829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.4%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 222.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7497e+04 | 30464 |      1 | 3.931e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.466890267374858 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.345046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.3%)
   patch tree reduce : 1.96 us    (0.9%)
   gen split merge   : 891.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.6%)
   LB compute        : 208.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8346e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.78964944421392 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.348264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.5%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 217.75 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1450e+04 | 30464 |      1 | 4.264e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.167704772358274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.351481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.2%)
   patch tree reduce : 1.55 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 253.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8269e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.7605010858247 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.354699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 282.59 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 us    (49.6%)
Warning: High interface/patch volume 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.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8083e+04 | 30464 |      1 | 3.901e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.689912028525224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.357917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 247.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8418e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.817065365260795 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.361134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.4%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 219.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8623e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.895195326594166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.36435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (2.0%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.5%)
   LB compute        : 242.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7389e+04 | 30464 |      1 | 3.936e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.425911612653607 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.367570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.2%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 651.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 234.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8574e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87635910931456 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.370787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.9%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 250.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4963e+04 | 30464 |      1 | 4.064e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.50332761796519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.374005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.2%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 252.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8515e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.853980743469247 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.377222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.3%)
   patch tree reduce : 1.86 us    (0.8%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 212.13 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8821e+04 | 30464 |      1 | 3.865e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.97039911609651 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 1.91 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 217.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 us    (56.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8469e+04 | 30464 |      1 | 3.882e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.83661804934204 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.4%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 218.31 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7909e+04 | 30464 |      1 | 3.910e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.62368927899238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 258.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8698e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.92353287932227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.4%)
   patch tree reduce : 2.06 us    (0.9%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.6%)
   LB compute        : 220.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8565e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.872994749869207 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (2.4%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 217.59 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8868e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.988373705727934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.3965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.4%)
   LB compute        : 260.96 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5946e+04 | 30464 |      1 | 4.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.87725462899341 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.3997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.2%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 721.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 228.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1502e+04 | 30464 |      1 | 4.261e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.143821788012398 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 452                                                     [SPH][rank=0]
Info: time since start : 193.266137039 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002288903 s
Info: evolve_until (target_time = 1.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.4000000000000001, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.50 us   (4.1%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 235.52 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8839e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.977376355129635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4032176218909271, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.2%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 231.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9118e+04 | 30464 |      1 | 3.850e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.083232492669307 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4064352437818541, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (2.2%)
   patch tree reduce : 1.68 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 220.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8914e+04 | 30464 |      1 | 3.860e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.0055726895703 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.4096528656727811, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.9%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.4%)
   LB compute        : 262.49 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.63 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8730e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9357894207766 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.4128704875637081, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.6%)
   patch tree reduce : 1.50 us    (0.6%)
   gen split merge   : 641.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 214.59 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8956e+04 | 30464 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.021820310003775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4160881094546351, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.3%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.6%)
   LB compute        : 212.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (59.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9100e+04 | 30464 |      1 | 3.851e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.07658293102138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4193057313455621, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.9%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 274.88 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9052e+04 | 30464 |      1 | 3.854e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.058357316969545 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (2.2%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 831.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.5%)
   LB compute        : 217.47 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9056e+04 | 30464 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.059638516780634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.4%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 221.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8010e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.6620578590649 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.4289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (2.1%)
   patch tree reduce : 1.64 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 238.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6892e+04 | 30464 |      1 | 3.962e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.23708478264598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.3%)
   patch tree reduce : 1.75 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 230.30 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8640e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.901649055776915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (2.3%)
   patch tree reduce : 1.79 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 218.01 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5578e+04 | 30464 |      1 | 4.031e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.737390309841846 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.3%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 236.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.05 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8324e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.781239659827502 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.8%)
   patch tree reduce : 1.58 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 251.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2117e+04 | 30464 |      1 | 4.224e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.421262010713523 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.3%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.05 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 219.35 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4663e+04 | 30464 |      1 | 4.080e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.38955973489458 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (2.1%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.44 us    (0.6%)
   LB compute        : 238.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0722e+04 | 30464 |      1 | 4.308e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.890837747280425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.0%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.4%)
   LB compute        : 256.51 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5152e+04 | 30464 |      1 | 4.054e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.57516051262546 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.4%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 247.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8264e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.75873515871681 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.8%)
   patch tree reduce : 1.41 us    (0.5%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 256.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6782e+04 | 30464 |      1 | 3.968e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.19505653977574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 218.76 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7357e+04 | 30464 |      1 | 4.523e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.61127632310696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.6%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 221.55 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8665e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.910996961008205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (2.1%)
   patch tree reduce : 1.67 us    (0.6%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.4%)
   LB compute        : 249.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8681e+04 | 30464 |      1 | 3.872e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.917349800970136 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.9%)
   patch tree reduce : 1.74 us    (0.6%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 252.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0716e+04 | 30464 |      1 | 4.308e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.888497444944964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (2.1%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 223.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8969e+04 | 30464 |      1 | 3.858e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.02679406159147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.9%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 243.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 us    (65.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8757e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.945973639842812 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.4%)
   patch tree reduce : 2.01 us    (0.9%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 217.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8692e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.921300886146742 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.1%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 233.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.64 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3393e+04 | 30464 |      1 | 4.151e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.90666242467719 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.2%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1.06 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 257.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8007e+04 | 30464 |      1 | 3.905e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.66081526248978 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (2.2%)
   patch tree reduce : 1.82 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 222.44 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9020e+04 | 30464 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.04622249932492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.2%)
   patch tree reduce : 1.55 us    (0.7%)
   gen split merge   : 872.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.6%)
   LB compute        : 214.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8652e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.90612449899878 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.4965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.3%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 237.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8540e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.863696910539446 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.4997462786187372, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.1%)
   patch tree reduce : 1.58 us    (0.7%)
   gen split merge   : 931.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 217.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8560e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.355458021893261 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 484                                                     [SPH][rank=0]
Info: time since start : 206.279402659 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0022719470000000003 s
Info: evolve_until (target_time = 1.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.5, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.11 us   (3.7%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 540.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.4%)
   LB compute        : 252.41 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8223e+04 | 30464 |      1 | 3.894e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.74308379158771 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.503217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.4%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 218.54 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8738e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.938983152099425 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.506435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (1.9%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 261.00 us  (89.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8505e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.850259108078962 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.509652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (2.1%)
   patch tree reduce : 1.32 us    (0.6%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.6%)
   LB compute        : 216.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8787e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.95745147169749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.512870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.5%)
   patch tree reduce : 1.45 us    (0.6%)
   gen split merge   : 1.03 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.6%)
   LB compute        : 219.64 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2749e+04 | 30464 |      1 | 4.188e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.661462788140913 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.516088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.3%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 237.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8222e+04 | 30464 |      1 | 3.895e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.74245503374538 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.519305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.1%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 891.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 250.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8346e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.789679858962213 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.522523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.1%)
   patch tree reduce : 1.69 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.4%)
   LB compute        : 259.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 2.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2869e+04 | 30464 |      1 | 4.181e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.707302010774164 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.525740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.5%)
   LB compute        : 272.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8806e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.96486110251129 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.528958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (2.0%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 681.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 231.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 2.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.44 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6173e+04 | 30464 |      1 | 3.999e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.963366271050155 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.53217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 218.51 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3920e+04 | 30464 |      1 | 4.121e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.106963678045943 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.535393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (2.3%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 811.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 209.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.43 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6006e+04 | 30464 |      1 | 4.008e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.89995799207868 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.538611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (2.0%)
   patch tree reduce : 1.94 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 245.39 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8660e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.909132735341487 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.541829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.1%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.4%)
   LB compute        : 247.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.6406e+04 | 30464 |      1 | 3.987e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.052100696021515 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.545046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (2.2%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 882.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 213.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.3087e+04 | 30464 |      1 | 4.168e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.790254159698343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.548264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.3%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.6%)
   LB compute        : 227.48 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8421e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.818367297278606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.551481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (2.1%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 233.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8617e+04 | 30464 |      1 | 3.875e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.892727952189585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.554699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 902.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 218.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8532e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.860680640676097 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.557917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (2.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 233.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (62.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8650e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.90546026203165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.561134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.2%)
   patch tree reduce : 1.28 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.6%)
   LB compute        : 213.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8732e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.936689356249477 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.56435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 261.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8162e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.719978891987086 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.567570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.0%)
   patch tree reduce : 1.62 us    (0.6%)
   gen split merge   : 842.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 245.03 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8292e+04 | 30464 |      1 | 3.891e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.76908759233694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.570787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.3%)
   patch tree reduce : 1.48 us    (0.6%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 219.93 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8398e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.809685294573473 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.574005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.4%)
   patch tree reduce : 1.85 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 219.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8646e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.903930845650958 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.577222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (2.2%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 1.35 us    (0.6%)
   split / merge op  : 0/0
   apply split merge : 1.69 us    (0.7%)
   LB compute        : 219.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8570e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.87487473741289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.580440547273175, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (2.4%)
   patch tree reduce : 1.53 us    (0.7%)
   gen split merge   : 1.06 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.5%)
   LB compute        : 211.10 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.13 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7705e+04 | 30464 |      1 | 3.920e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.54591236318856 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.583658169164102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (2.0%)
   patch tree reduce : 1.76 us    (0.6%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 263.90 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8150e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.715149173574726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.586875791055029, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (2.2%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.4%)
   LB compute        : 241.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.49 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8596e+04 | 30464 |      1 | 3.876e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.884670355644737 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.590093412945956, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.5%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 218.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8874e+04 | 30464 |      1 | 3.862e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.990580697702043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.593311034836883, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (2.0%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.52 us    (0.6%)
   LB compute        : 245.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8759e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.946706801896077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.59652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.3%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.37 us    (0.5%)
   LB compute        : 231.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4049e+04 | 30464 |      1 | 4.114e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.155962800080903 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.599746278618737, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 1.93 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.4%)
   LB compute        : 265.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.46 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8507e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.353854715685287 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 516                                                     [SPH][rank=0]
Info: time since start : 219.211893368 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002276223 s
Info: evolve_until (target_time = 1.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.6, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.27 us   (3.8%)
   patch tree reduce : 1.68 us    (0.6%)
   gen split merge   : 541.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 248.47 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.36 us    (62.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8769e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.950584951413617 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.603217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.9%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 931.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 270.36 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8628e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89701552891802 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.606435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.4%)
   patch tree reduce : 1.79 us    (0.7%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 233.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8813e+04 | 30464 |      1 | 3.865e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.96730574465473 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.609652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.40 us    (2.0%)
   patch tree reduce : 1.45 us    (0.7%)
   gen split merge   : 631.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 204.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 851.00 ns  (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.6155e+04 | 30464 |      1 | 4.605e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.154206256076556 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.612870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.3%)
   patch tree reduce : 1.37 us    (0.5%)
   gen split merge   : 881.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 232.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8653e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.906410339214204 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.616088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.3%)
   patch tree reduce : 1.51 us    (0.6%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.47 us    (0.6%)
   LB compute        : 219.55 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8376e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.801177097367244 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.619305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (2.5%)
   patch tree reduce : 1.90 us    (0.8%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.4%)
   LB compute        : 212.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8704e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.92608041429534 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.622523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.8%)
   patch tree reduce : 1.70 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.49 us    (0.5%)
   LB compute        : 262.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.9440e+04 | 30464 |      1 | 4.387e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.40355671712198 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.625740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.9%)
   patch tree reduce : 14.79 us   (5.1%)
   gen split merge   : 1.20 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 255.60 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8933e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.012912907547296 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6289585970183431, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.7%)
   patch tree reduce : 2.14 us    (0.9%)
   gen split merge   : 932.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 217.77 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8847e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.98010004820589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6321762189092701, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (2.2%)
   patch tree reduce : 1.87 us    (0.8%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 213.10 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7774e+04 | 30464 |      1 | 3.917e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.572122072294995 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6353938408001971, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (2.1%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 235.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0173e+04 | 30464 |      1 | 4.341e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.682112038238436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6386114626911241, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.9%)
   patch tree reduce : 1.78 us    (0.7%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 246.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8040e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.673288862992298 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6418290845820511, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.8%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 751.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.4%)
   LB compute        : 279.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8064e+04 | 30464 |      1 | 3.902e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.68274247238626 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6450467064729781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.7%)
   patch tree reduce : 1.97 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.58 us    (0.7%)
   LB compute        : 213.84 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7378e+04 | 30464 |      1 | 3.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.421587700120977 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6482643283639051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.4%)
   patch tree reduce : 1.76 us    (0.7%)
   gen split merge   : 862.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 218.91 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8753e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.944385580647726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6514819502548321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 921.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 218.48 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8855e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.98316532815379 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6546995721457591, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.2%)
   patch tree reduce : 1.54 us    (0.3%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.2%)
   LB compute        : 492.54 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.6%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7743e+04 | 30464 |      1 | 3.919e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.5604940526127 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.6579171940366861, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.5%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 792.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 214.30 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8387e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.805464678673623 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6611348159276131, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (2.2%)
   patch tree reduce : 1.73 us    (0.7%)
   gen split merge   : 871.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.5%)
   LB compute        : 215.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8305e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.774238078947462 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6643524378185401, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (2.3%)
   patch tree reduce : 1.69 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.5%)
   LB compute        : 217.77 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (64.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8245e+04 | 30464 |      1 | 3.893e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.751204128365657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6675700597094671, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.8%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 275.46 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8647e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.904294077526867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6707876816003941, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.4%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.6%)
   LB compute        : 214.17 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8500e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.848188241960163 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 243.27 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5939e+04 | 30464 |      1 | 4.012e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.874557186533373 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.0%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 264.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8426e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.820268435829302 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (2.0%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 862.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 243.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8933e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.01308507810851 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.8%)
   patch tree reduce : 1.78 us    (0.6%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 256.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.34 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2306e+04 | 30464 |      1 | 4.213e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.49308871540575 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6868757910550292, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.1%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 245.17 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.12 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8797e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.961187873644043 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6900934129459562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.9%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.4%)
   LB compute        : 261.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7386e+04 | 30464 |      1 | 3.937e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.424851967616107 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6933110348368832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.0%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 1.16 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.5%)
   LB compute        : 274.40 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5040e+04 | 30464 |      1 | 4.060e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.53265329547877 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.6965286567278102, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.2%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.4%)
   LB compute        : 263.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1980e+04 | 30464 |      1 | 4.232e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.369366882008507 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6997462786187372, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.4%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 232.46 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7022e+04 | 30464 |      1 | 4.545e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.009508691683713 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 548                                                     [SPH][rank=0]
Info: time since start : 232.49440509000001 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002264877 s
Info: evolve_until (target_time = 1.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.7000000000000002, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.78 us   (3.9%)
   patch tree reduce : 1.85 us    (0.7%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.5%)
   LB compute        : 252.99 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.51 us    (71.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7306e+04 | 30464 |      1 | 4.526e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.59194837797647 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7032176218909272, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.4%)
   LB compute        : 253.46 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.03 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8433e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.822809627767928 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7064352437818542, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (2.4%)
   patch tree reduce : 2.04 us    (0.9%)
   gen split merge   : 861.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.5%)
   LB compute        : 219.81 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.7210e+04 | 30464 |      1 | 4.533e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.555624047935193 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7096528656727812, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (2.5%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.4%)
   LB compute        : 217.67 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.30 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8845e+04 | 30464 |      1 | 3.864e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.97939450174574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7128704875637082, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (2.0%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.5%)
   LB compute        : 240.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8155e+04 | 30464 |      1 | 3.898e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.717137426444065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7160881094546352, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (2.2%)
   patch tree reduce : 2.02 us    (0.9%)
   gen split merge   : 851.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 216.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.35 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8854e+04 | 30464 |      1 | 3.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.983006073365186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7193057313455622, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (2.4%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 841.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.5%)
   LB compute        : 218.56 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8874e+04 | 30464 |      1 | 3.862e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.990419811180377 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7225233532364892, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (2.2%)
   patch tree reduce : 1.93 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 219.10 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4778e+04 | 30464 |      1 | 4.074e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.43327317505773 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7257409751274162, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.8%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 881.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 252.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8424e+04 | 30464 |      1 | 3.885e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.819629501566652 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7289585970183432, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.4%)
   patch tree reduce : 1.96 us    (0.8%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.6%)
   LB compute        : 236.82 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (1.2%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8646e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.903684887482665 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7321762189092702, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (2.3%)
   patch tree reduce : 1.56 us    (0.7%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 215.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9020e+04 | 30464 |      1 | 3.855e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.04604511634643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7353938408001972, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.4%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 220.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8309e+04 | 30464 |      1 | 3.890e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.775846947799174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7386114626911242, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 1.65 us    (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.57 us    (0.6%)
   LB compute        : 265.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.24 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8039e+04 | 30464 |      1 | 3.904e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.673000392485058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7418290845820512, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.5%)
   patch tree reduce : 1.92 us    (0.8%)
   gen split merge   : 1.01 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.6%)
   LB compute        : 219.39 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8506e+04 | 30464 |      1 | 3.880e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.850668038692035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7450467064729782, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.6%)
   patch tree reduce : 2.12 us    (0.9%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.43 us    (0.6%)
   LB compute        : 219.36 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.3%)
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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.9677e+04 | 30464 |      1 | 4.372e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.493369573166756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7482643283639052, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.4%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 1.15 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 233.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8438e+04 | 30464 |      1 | 3.884e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.824809165946867 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7514819502548322, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (2.3%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.11 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 241.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8658e+04 | 30464 |      1 | 3.873e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.908595166659385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7546995721457592, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (2.3%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 761.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.6%)
   LB compute        : 215.56 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9061e+04 | 30464 |      1 | 3.853e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.061473182264915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7579171940366862, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.8%)
   patch tree reduce : 1.99 us    (0.7%)
   gen split merge   : 811.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 259.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8504e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84989588001166 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7611348159276132, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.5%)
   patch tree reduce : 1.70 us    (0.7%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 220.68 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4056e+04 | 30464 |      1 | 4.114e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.158621766994965 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7643524378185402, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (2.1%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.6%)
   LB compute        : 232.29 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.09 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.0472e+04 | 30464 |      1 | 4.323e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.79597797622287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7675700597094672, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.4%)
   LB compute        : 255.55 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8528e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.85892019979177 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7707876816003942, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (2.1%)
   patch tree reduce : 1.61 us    (0.6%)
   gen split merge   : 911.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.5%)
   LB compute        : 249.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8531e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.86001334056924 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7740053034913212, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.3%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.20 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.5%)
   LB compute        : 237.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8787e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.957321311075585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7772229253822482, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (2.2%)
   patch tree reduce : 1.67 us    (0.7%)
   gen split merge   : 802.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.5%)
   LB compute        : 212.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 us    (62.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.1471e+04 | 30464 |      1 | 4.262e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.175650295708 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 1.7804405472731752, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (2.4%)
   patch tree reduce : 1.98 us    (0.8%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 221.37 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.25 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8490e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.844676433643382 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7836581691641022, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.4%)
   LB compute        : 272.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.37 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8488e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.843858681228884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7868757910550293, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (2.5%)
   patch tree reduce : 1.64 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.5%)
   LB compute        : 213.08 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.23 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8632e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.89868986322342 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7900934129459563, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.6%)
   patch tree reduce : 2.04 us    (0.9%)
   gen split merge   : 671.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.5%)
   LB compute        : 212.41 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.41 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8741e+04 | 30464 |      1 | 3.869e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.940024200272568 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7933110348368833, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.75 us    (2.2%)
   patch tree reduce : 1.71 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 239.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.21 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7010e+04 | 30464 |      1 | 3.956e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.281777729809264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.7965286567278103, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.3%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 851.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.5%)
   LB compute        : 241.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.08 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8492e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84541271827842 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.7997462786187373, dt = 0.00025372138126278365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (2.0%)
   patch tree reduce : 1.79 us    (0.6%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 256.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8572e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.355817725847799 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 580                                                     [SPH][rank=0]
Info: time since start : 245.55684591300002 (s)                                       [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.0023165340000000003 s
Info: evolve_until (target_time = 1.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 1.8, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.21 us   (3.8%)
   patch tree reduce : 1.71 us    (0.6%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 248.27 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.61 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8044e+04 | 30464 |      1 | 3.903e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.674995324468895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.803217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.1%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 239.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.18 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8281e+04 | 30464 |      1 | 3.892e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.765100957563668 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.806435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (2.0%)
   patch tree reduce : 1.90 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 261.58 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.32 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8572e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.875813471455896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.809652865672781, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.5%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.10 us    (0.5%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.4%)
   LB compute        : 221.35 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8391e+04 | 30464 |      1 | 3.886e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.806771580359452 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.812870487563708, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.2%)
   patch tree reduce : 1.72 us    (0.6%)
   gen split merge   : 841.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.4%)
   LB compute        : 249.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.45 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.2752e+04 | 30464 |      1 | 4.187e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.662860539295814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.816088109454635, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.7%)
   patch tree reduce : 1.63 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.40 us    (0.6%)
   LB compute        : 229.16 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.28 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8363e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.796103512175073 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.819305731345562, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (2.1%)
   patch tree reduce : 1.75 us    (0.6%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.4%)
   LB compute        : 255.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.33 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7548e+04 | 30464 |      1 | 3.928e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.486462940746808 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.822523353236489, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.5%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.5%)
   LB compute        : 217.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8568e+04 | 30464 |      1 | 3.877e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.874260735706365 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.825740975127416, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (2.3%)
   patch tree reduce : 1.77 us    (0.7%)
   gen split merge   : 1.09 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.5%)
   LB compute        : 238.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8383e+04 | 30464 |      1 | 3.887e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.80399102374039 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.828958597018343, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (2.2%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 1.07 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 241.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8187e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.72939047936066 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.83217621890927, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.4%)
   patch tree reduce : 1.99 us    (0.8%)
   gen split merge   : 1.04 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.5%)
   LB compute        : 221.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.11 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8198e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.733660557041823 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.835393840800197, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (2.3%)
   patch tree reduce : 1.83 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 217.83 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.27 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8530e+04 | 30464 |      1 | 3.879e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.859707911965142 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.838611462691124, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.2%)
   patch tree reduce : 1.81 us    (0.7%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 241.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.17 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8352e+04 | 30464 |      1 | 3.888e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.792232084442983 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.841829084582051, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.1%)
   patch tree reduce : 1.66 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 259.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.31 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7473e+04 | 30464 |      1 | 3.932e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.457795522923075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.845046706472978, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (2.2%)
   patch tree reduce : 1.72 us    (0.7%)
   gen split merge   : 731.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.5%)
   LB compute        : 213.91 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 2.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.06 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5190e+04 | 30464 |      1 | 4.052e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.58994469127017 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.848264328363905, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.77 us    (2.3%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 227.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.01 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8560e+04 | 30464 |      1 | 3.878e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.871243256034482 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.851481950254832, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (2.1%)
   patch tree reduce : 1.88 us    (0.7%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.27 us    (0.5%)
   LB compute        : 243.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8490e+04 | 30464 |      1 | 3.881e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.844647828853343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.854699572145759, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (2.2%)
   patch tree reduce : 1.88 us    (0.8%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 228.50 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.59 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8197e+04 | 30464 |      1 | 3.896e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.733113250073057 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.857917194036686, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.3%)
   patch tree reduce : 1.89 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.4%)
   LB compute        : 240.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8940e+04 | 30464 |      1 | 3.859e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.015480351248026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.861134815927613, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (2.2%)
   patch tree reduce : 1.81 us    (0.8%)
   gen split merge   : 791.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 218.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.10 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8897e+04 | 30464 |      1 | 3.861e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.99925590610542 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.86435243781854, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.59 us    (2.2%)
   patch tree reduce : 1.66 us    (0.7%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 233.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8778e+04 | 30464 |      1 | 3.867e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.954065726596625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.867570059709467, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.3%)
   patch tree reduce : 1.95 us    (0.8%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.4%)
   LB compute        : 230.25 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4182e+04 | 30464 |      1 | 4.107e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.206518643412313 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.870787681600394, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (2.1%)
   patch tree reduce : 1.86 us    (0.7%)
   gen split merge   : 912.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.5%)
   LB compute        : 233.87 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.22 us    (64.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.4584e+04 | 30464 |      1 | 4.085e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.359440594237345 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.874005303491321, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.3%)
   patch tree reduce : 1.80 us    (0.7%)
   gen split merge   : 801.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.4%)
   LB compute        : 234.46 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9144e+04 | 30464 |      1 | 3.849e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.0932008965113 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 1.877222925382248, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (2.0%)
   patch tree reduce : 1.63 us    (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.25 us    (0.5%)
   LB compute        : 248.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.15 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8804e+04 | 30464 |      1 | 3.866e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.96406163177972 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8804405472731751, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (2.4%)
   patch tree reduce : 1.74 us    (0.7%)
   gen split merge   : 901.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.5%)
   LB compute        : 217.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.16 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.9061e+04 | 30464 |      1 | 3.853e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.061833619951283 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8836581691641021, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1.49 us    (0.5%)
   gen split merge   : 1.00 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 265.34 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (51.8%)
Warning: High interface/patch volume 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.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8751e+04 | 30464 |      1 | 3.868e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.943881422175103 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8868757910550291, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (2.1%)
   patch tree reduce : 1.92 us    (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 242.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.20 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8641e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.90179548313576 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8900934129459561, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.3%)
   patch tree reduce : 1.52 us    (0.6%)
   gen split merge   : 911.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.5%)
   LB compute        : 233.65 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.29 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8692e+04 | 30464 |      1 | 3.871e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.92141774911728 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 1.8933110348368831, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (2.1%)
   patch tree reduce : 1.95 us    (0.7%)
   gen split merge   : 781.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.4%)
   LB compute        : 251.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.14 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.5943e+04 | 30464 |      1 | 4.011e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.875998380017034 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8965286567278101, dt = 0.0032176218909270153 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.9%)
   patch tree reduce : 1.84 us    (0.7%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.26 us    (0.5%)
   LB compute        : 249.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.26 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: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.7188e+04 | 30464 |      1 | 3.947e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.349365253216185 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.8997462786187371, dt = 0.0002537213812630057 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 30464.0 min = 30464.0 factor = 1
 - strategy "round robin" : max = 28940.8 min = 28940.8 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 30464
    max = 30464
    avg = 30464
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (2.2%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1.02 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.5%)
   LB compute        : 248.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.19 us    (64.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 0.7583705357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (0,0,0)
    sum a = (0,0,0)
    sum e = 0
    sum de = 0
Info: cfl dt = 0.0032176218909270153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 7.8645e+04 | 30464 |      1 | 3.874e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.35799410395953 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 612                                                     [SPH][rank=0]
Info: time since start : 258.428458754 (s)                                            [SPH][rank=0]
sph::RenderFieldGetter compute custom field took :  0.002232778 s

Plot making#

You may notice the precense of a small kink at the edge of the diffusion or a spike in the ds/dt This is due to the low resolution of the test. If you push it is will soften.

Also remember that \(s = \sqrt{\rho \epsilon}\) raise sharply from 0 which does not help. In that context using the \(\epsilon\) behaves better.

Convert PNG sequence to Image sequence in mpl#

277 from shamrock.utils.plot import show_image_sequence
278
279 # If the animation is not returned only a static image will be shown in the doc
280
281 glob_str = os.path.join("_to_trash", "dump_dustydiffuse_tva_*.png")
282 ani = show_image_sequence(glob_str)
283
284 from matplotlib.animation import PillowWriter
285
286 writer = PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
287 ani.save("_to_trash/dump_dustydiffuse_tva.gif", writer=writer)
288
289 if shamrock.sys.world_rank() == 0:
290     # Show the animation
291     plt.show()

PL15 like figure#

297 plt.figure()
298 for i, (t, r_data, eps) in enumerate(snapshots):
299     plt.plot(
300         r_ana,
301         analytic_eps_curve(t),
302         "--",
303         color="black",
304         label="analytic" if i == 0 else "_nolegend_",
305     )
306     plt.plot(r_data, eps, ".", label=f"t = {t:.2f}")
307
308
309 plt.xlabel(r"$r$")
310 plt.ylabel(r"$\epsilon$")
311 plt.xlim(0, 0.5)
312 plt.ylim(0, 0.11)
313 plt.legend()
314 plt.show()
run dustydiffuse tva

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

Estimated memory usage: 403 MB

Gallery generated by Sphinx-Gallery